Created
November 15, 2018 12:46
-
-
Save PhilippeBoisney/4ba200a6610ae9175c332b2da04453b2 to your computer and use it in GitHub Desktop.
This file contains 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 USED IN COOKMINUTE PROJECT ***** | |
dependencies { | |
// KOTLIN | |
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlinVersion" | |
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlinVersion" | |
implementation "org.jetbrains.kotlin:kotlin-test-junit:$kotlinVersion" | |
// ANDROID | |
implementation "com.google.android.material:material:$androidSupport" | |
implementation 'androidx.constraintlayout:constraintlayout:1.1.3' | |
implementation "androidx.legacy:legacy-support-v4:$androidSupport" | |
implementation "androidx.palette:palette:$androidSupport" | |
// ANDROID TESTING | |
implementation 'androidx.appcompat:appcompat:1.0.0' | |
androidTestImplementation 'androidx.test.ext:junit:1.0.0' | |
androidTestImplementation('androidx.test.espresso:espresso-contrib:3.1.0-alpha4') | |
androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0' | |
androidTestImplementation 'androidx.test:rules:1.1.0' | |
androidTestUtil 'androidx.test:orchestrator:1.1.0' | |
androidTestImplementation 'com.squareup.okhttp3:mockwebserver:3.11.0' | |
androidTestImplementation 'androidx.arch.core:core-testing:2.0.0' | |
androidTestImplementation 'androidx.test.espresso:espresso-intents:3.1.0' | |
androidTestImplementation 'com.squareup.rx.idler:rx2-idler:0.9.0' | |
androidTestImplementation 'androidx.test.uiautomator:uiautomator:2.2.0' | |
kaptAndroidTest 'com.google.dagger:dagger:2.17' | |
testImplementation 'com.google.dagger:dagger:2.17' | |
testImplementation 'junit:junit:4.12' | |
testImplementation "org.robolectric:robolectric:4.0-alpha-3" | |
testImplementation 'org.mockito:mockito-core:2.19.0' | |
testImplementation 'com.squareup.okhttp3:mockwebserver:3.11.0' | |
testImplementation 'androidx.arch.core:core-testing:2.0.0' | |
kaptTest 'com.google.dagger:dagger:2.17' | |
// DAGGER 2 | |
implementation 'com.google.dagger:dagger:2.17' | |
kapt 'com.google.dagger:dagger-compiler:2.17' | |
compileOnly 'javax.annotation:jsr250-api:1.0' | |
// NETWORKING | |
implementation 'com.squareup.retrofit2:retrofit:2.4.0' | |
implementation 'com.squareup.retrofit2:adapter-rxjava2:2.4.0' | |
implementation 'com.squareup.retrofit2:converter-gson:2.4.0' | |
implementation 'com.squareup.retrofit2:converter-scalars:2.4.0' | |
implementation 'com.squareup.okhttp3:logging-interceptor:3.11.0' | |
// ROOM | |
implementation 'com.facebook.stetho:stetho:1.5.0' | |
implementation 'androidx.room:room-runtime:2.1.0-alpha01' | |
implementation 'androidx.room:room-rxjava2:2.1.0-alpha01' | |
kapt 'androidx.room:room-compiler:2.1.0-alpha01' | |
// VIEW MODEL & LIVE DATA | |
implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0' | |
// PAGING | |
implementation 'androidx.paging:paging-runtime:2.1.0-alpha01' | |
implementation "android.arch.paging:rxjava2:1.0.1" | |
// RXJAVA2 | |
implementation 'io.reactivex.rxjava2:rxandroid:2.0.1' | |
implementation 'io.reactivex.rxjava2:rxjava:2.1.7' | |
// GLIDE | |
implementation 'com.github.bumptech.glide:glide:4.8.0' | |
kapt 'com.github.bumptech.glide:compiler:4.8.0' | |
// LEAK CANARY | |
debugImplementation 'com.squareup.leakcanary:leakcanary-android:1.6.1' | |
stagingImplementation 'com.squareup.leakcanary:leakcanary-android:1.6.1' | |
releaseImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.6.1' | |
androidTestImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.6.1' | |
testImplementation 'com.squareup.leakcanary:leakcanary-android-no-op:1.6.1' | |
// FIREBASE | |
implementation 'com.google.firebase:firebase-core:16.0.4' | |
implementation 'com.google.firebase:firebase-firestore:17.1.2' | |
implementation 'com.google.firebase:firebase-auth:16.0.5' | |
implementation 'com.google.firebase:firebase-messaging:17.3.4' | |
// CRASHLYTICS | |
implementation('com.crashlytics.sdk.android:crashlytics:2.9.5') | |
// WORKMANAGER | |
implementation("android.arch.work:work-runtime:1.0.0-alpha10") { | |
exclude group: 'com.google.guava', module: 'listenablefuture' | |
} | |
androidTestImplementation "android.arch.work:work-testing:1.0.0-alpha10" | |
testImplementation "android.arch.work:work-testing:1.0.0-alpha10" | |
// TIMBER LOGGING | |
implementation 'com.jakewharton.timber:timber:4.7.1' | |
// CUSTOM TABS | |
implementation 'androidx.browser:browser:1.0.0' | |
// BILLING CLIENT | |
implementation 'com.android.billingclient:billing:1.2' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment