Skip to content

Instantly share code, notes, and snippets.

@Cuncis
Last active March 25, 2020 00:29
Show Gist options
  • Save Cuncis/d9672c52d6c387483d1cc083b46b9588 to your computer and use it in GitHub Desktop.
Save Cuncis/d9672c52d6c387483d1cc083b46b9588 to your computer and use it in GitHub Desktop.
apply plugin: 'kotlin-kapt'
// additional
implementation 'com.google.android.material:material:1.1.0'
implementation 'androidx.recyclerview:recyclerview:1.1.0'
implementation 'androidx.cardview:cardview:1.0.0'
// retrofit + rxjava
implementation 'com.squareup.retrofit2:retrofit:2.5.0'
implementation 'com.squareup.retrofit2:converter-gson:2.5.0'
implementation 'com.squareup.retrofit2:adapter-rxjava2:2.3.0'
implementation 'io.reactivex.rxjava2:rxjava:2.1.14'
implementation 'io.reactivex.rxjava2:rxandroid:2.0.2'
// interceptor
implementation 'com.squareup.okhttp3:okhttp:4.2.1'
implementation 'com.squareup.okhttp3:logging-interceptor:3.11.0'
// Room components
implementation "android.arch.persistence.room:runtime:1.1.1"
kapt "android.arch.persistence.room:compiler:1.1.1"
// Lifecycle components
implementation "android.arch.lifecycle:extensions:1.1.1"
kapt "android.arch.lifecycle:compiler:1.1.1"
// dagger 2
implementation 'com.google.dagger:dagger:2.24'
implementation 'com.google.dagger:dagger-android:2.24'
implementation 'com.google.dagger:dagger-android-support:2.24'
kapt 'com.google.dagger:dagger-compiler:2.24'
kapt 'com.google.dagger:dagger-android-processor:2.24'
implementation 'com.google.code.findbugs:jsr305:3.0.2'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment