Created
March 3, 2018 00:32
-
-
Save cdmunoz/3bf765596c97791db7d6431af147ee08 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dependencies { | |
//android libs | |
implementation fileTree(dir: 'libs', include: ['*.jar']) | |
implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version" | |
implementation "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}" | |
implementation "com.android.support.constraint:constraint-layout:${rootProject.ext.constraintLayoutVersion}" | |
//moshi | |
implementation "com.squareup.moshi:moshi-kotlin:${rootProject.ext.moshiKotlinVersion}" | |
//dagger2 | |
implementation "com.google.dagger:dagger-android:${rootProject.ext.dagger2Version}" | |
kapt "com.google.dagger:dagger-compiler:${rootProject.ext.dagger2Version}" | |
kapt "com.google.dagger:dagger-android-processor:${rootProject.ext.dagger2Version}" | |
//test | |
testImplementation "junit:junit:${rootProject.ext.junitVersion}" | |
androidTestImplementation "com.android.support.test:runner:${rootProject.ext.testRunnerVersion}" | |
androidTestImplementation "com.android.support.test.espresso:espresso-core:${rootProject.ext.testEspressoVersion}" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment