Skip to content

Instantly share code, notes, and snippets.

@alex-y-su
Created August 10, 2019 13:54
Show Gist options
  • Save alex-y-su/f9adbbaff250ef0554aeecc1dc5e3123 to your computer and use it in GitHub Desktop.
Save alex-y-su/f9adbbaff250ef0554aeecc1dc5e3123 to your computer and use it in GitHub Desktop.
SM dependencies
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'androidx.multidex:multidex:2.0.1'
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'com.google.android.material:material:1.0.0'
implementation 'androidx.core:core-ktx:1.0.1'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation "androidx.work:work-runtime-ktx:2.0.1"
implementation "androidx.work:work-rxjava2:2.0.1"
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
implementation 'io.reactivex.rxjava2:rxjava:2.2.7'
implementation 'com.squareup.retrofit2:retrofit:2.5.0'
implementation 'com.squareup.retrofit2:adapter-rxjava2:2.5.0'
implementation 'com.squareup.retrofit2:converter-gson:2.5.0'
implementation 'com.squareup.okhttp3:logging-interceptor:3.12.1'
implementation 'com.facebook.android:facebook-login:4.42.0'
implementation 'com.google.firebase:firebase-core:17.0.1'
implementation 'com.google.firebase:firebase-auth:18.1.0'
implementation 'com.google.firebase:firebase-ads:18.1.0'
implementation 'com.google.firebase:firebase-config:18.0.0'
implementation 'com.github.stephanenicolas.toothpick:toothpick-runtime:2.1.0'
implementation 'com.github.stephanenicolas.toothpick:smoothie-androidx:2.1.0'
kapt 'com.github.stephanenicolas.toothpick:toothpick-compiler:2.1.0'
implementation('com.alimuzaffar.lib:pinentryedittext:2.0.6') {
exclude group: 'androidx.appcompat', module: 'appcompat'
}
implementation 'ru.terrakok.cicerone:cicerone:5.0.0'
implementation 'com.github.florent37:runtime-permission-kotlin:1.1.0'
implementation 'com.github.bumptech.glide:glide:4.9.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'
implementation("com.github.bumptech.glide:okhttp3-integration:4.9.0")
// implementation 'com.arello-mobile:moxy-app-compat:1.5.5'
// kapt 'com.arello-mobile:moxy-compiler:1.5.5'
implementation 'tech.schoolhelper:moxy-x:1.5.7'
implementation 'tech.schoolhelper:moxy-x-androidx:1.5.7'
kapt 'tech.schoolhelper:moxy-x-compiler:1.5.7'
implementation 'com.google.android.gms:play-services-location:16.0.0'
implementation 'com.crashlytics.sdk.android:crashlytics:2.10.1'
implementation 'com.jakewharton.timber:timber:4.7.1'
implementation('com.mopub:mopub-sdk:5.7.1@aar') {
transitive = true
}
testImplementation "org.jetbrains.kotlin:kotlin-test-junit:$kotlin_version"
testImplementation "junit:junit:4.12"
testImplementation "org.amshove.kluent:kluent:1.36"
testImplementation 'org.robolectric:robolectric:4.3'
testImplementation 'androidx.test:core:1.0.0'
}
apply plugin: 'com.google.gms.google-services'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment