[Android] Importing a local .aar as a gradle dependency

1.- File > New > New module > Import .JAR/.AAR package
2.- Write some file name, a […] will appear on the right. Click it, and select the .aar file
3.- Leave the rest of the fields as they are, click on Finish
4.- Add gradle dependency

compile project(‘:Outbarriers-SDK-release-1.0’)

Advertisement

[Android] Setting a quick instrumentation test environment with Espresso + JUnit + Mockito

1.- Gradle dependencies – global build.gradle

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.1.0'
        classpath 'com.neenbedankt.gradle.plugins:android-apt:1.4'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
        maven { url "https://jitpack.io" }
    }
} 

2.- Gradle dependencies – app/build.gradle

defaultConfig {
    applicationId "..."
    minSdkVersion 15
    testInstrumentationRunner 'android.support.test.runner.AndroidJUnitRunner'
}

dependencies { 
    // ... testCompile 'junit:junit:4.12' 
    androidTestCompile 'com.google.dexmaker:dexmaker:1.2' 
    androidTestCompile('com.google.dexmaker:dexmaker-mockito:1.2') { 
        exclude group: 'org.hamcrest', module: 'hamcrest-core' 
    }
    androidTestCompile 'com.android.support.test:runner:0.4.1' 
    androidTestCompile 'com.android.support.test:rules:0.4.1'
    androidTestCompile 'org.mockito:mockito-core:1.10.19' 
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.1') 
    { 
        exclude group: 'javax.inject', module: 'javax.inject'
        exclude group: 'com.squareup', module: 'javawriter' 
    }
    androidTestCompile('com.android.support.test.espresso:espresso-contrib:2.2.1') 
    { 
        exclude module: 'support-annotations' 
        exclude module: 'recyclerview-v7' exclude module: 'support-v4' 
    }
    androidTestCompile('com.android.support.test.espresso:espresso-intents:2.2.1') 
    testCompile "org.mockito:mockito-core:1.9.5" 
    testCompile 'org.mockito:mockito-all:1.9.5' 
}

configurations.all { 
    resolutionStrategy.force 'com.android.support:support-annotations:23.0.1' 
}

3.- Sample test (androidTest/com/package/name folder)

@RunWith(AndroidJUnit4.class) @LargeTest
public class IssuesActivityTest {
    @Rule
    public IntentsTestRule<IssuesActivity> activityRule =
            new IntentsTestRule<>(IssuesActivity.class, true, false);

    @Test
    public void shouldDisplayToolbarOnStart() {
        startActivity();

        onView(withId(R.id.toolbar)).check(matches(isDisplayed()));
    }

    private IssuesActivity startActivity() {
        return activityRule.launchActivity(null);
    }
}

And that’s all folks

[Android] Configuring checkstyle for your Android project

1.- app/build.gradle

apply plugin: 'com.android.application'
apply plugin: 'checkstyle' // <-- add this line

android {
    // ...
}
task checkstyle(type: Checkstyle) {
    configFile = rootProject.file('config/checkstyle.xml')

    source 'src'
    include '**/*.java'
    exclude '**/gen/**'

    classpath = files()
}

dependencies {
    //  ...
}

2.- Create a file and name it checkstyle.xml inside project_root/config

You can find the contents of this file here

3.- You can now execute the checkstyle from your terminal

./gradlew checkstyle

[Android] Adding Dagger2 to your project in 4 quick steps

1.- Gradle dependencies

[global build.gradle]

classpath ‘com.android.tools.build:gradle:2.1.0’
classpath ‘com.neenbedankt.gradle.plugins:android-apt:1.4’

repositories {
jcenter()
maven { url “https://jitpack.io&#8221; }
}

[app/build.gradle]

apply plugin: ‘com.android.application’
apply plugin: ‘com.neenbedankt.android-apt’

compile ‘com.google.dagger:dagger:2.0.2’
apt ‘com.google.dagger:dagger-compiler:2.0.2’
provided ‘javax.annotation:jsr250-api:1.0’

2.- Root Component

@Component(modules = MainModule.class)
public interface RootComponent {

void inject(BaseActivity activity);
void inject(App application);

// …. more injections here
}

3.- Main Module

@Module
public class MainModule {
App application;
LoggedUserFacade facade;

public MainModule(App application) {
this.application = application;
facade = new LoggedUserFacade(application);
// … More dependencies here
}

@Provides
@Named(“applicationContext”)
Context provideApplicationContext() {
return application.getApplicationContext();
}

// … rest of the @Provides-annotated methods
}

4.- Application class

public class App extends Application {
MainModule mainModule;
RootComponent component;

@Override
public void onCreate() {
super.onCreate();

initializeDependencyInjection();
}

private void initializeDependencyInjection() {
mainModule = new MainModule(this);
component = DaggerRootComponent.builder()
.mainModule(mainModule)
.build();
component.inject(this);
}

public RootComponent getComponent() {
return component;
}

@VisibleForTesting public void setComponent(RootComponent component) {
this.component = component;
}
}