Created
March 6, 2018 18:45
-
-
Save cdmunoz/8e1bbdc11835fe6cdaf785ba4f871608 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}" | |
| implementation "com.squareup.moshi:moshi-adapters:${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}" | |
| //Room | |
| implementation "android.arch.persistence.room:runtime:${rootProject.ext.archRoomVersion}" | |
| kapt "android.arch.persistence.room:compiler:${rootProject.ext.archRoomVersion}" | |
| //Lifecycle | |
| implementation "android.arch.lifecycle:extensions:${rootProject.ext.archLifecycleVersion}" | |
| kapt "android.arch.lifecycle:compiler:${rootProject.ext.archLifecycleVersion}" | |
| //Retrofit | |
| implementation "com.squareup.retrofit2:retrofit:${rootProject.ext.retrofitVersion}" | |
| implementation "com.squareup.retrofit2:converter-moshi:${rootProject.ext.moshiConverterVersion}" | |
| implementation "com.squareup.retrofit2:adapter-rxjava2:${rootProject.ext.rxJavaAdapterVersion}" | |
| //RxJava RxAndroid | |
| implementation "io.reactivex.rxjava2:rxjava:${rootProject.ext.rxJava2Version}" | |
| implementation "io.reactivex.rxjava2:rxandroid:${rootProject.ext.rxAndroidVersion}" | |
| //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