Skip to content

Instantly share code, notes, and snippets.

@sharmadhiraj
Last active July 30, 2019 09:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sharmadhiraj/795e323a1b2c1568fffeb1090246c83f to your computer and use it in GitHub Desktop.
Save sharmadhiraj/795e323a1b2c1568fffeb1090246c83f to your computer and use it in GitHub Desktop.
Android Paging Library
//Kotlin
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
//Support
implementation 'androidx.appcompat:appcompat:1.0.2'
implementation 'com.google.android.material:material:1.0.0'
implementation 'androidx.recyclerview:recyclerview:1.0.0'
implementation 'androidx.cardview:cardview:1.0.0'
//Architecture Components
implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0'
//Paging
implementation 'androidx.paging:paging-runtime:2.1.0'
//Networking
implementation 'com.squareup.retrofit2:retrofit:2.6.0'
implementation 'com.squareup.retrofit2:converter-gson:2.6.0'
implementation 'com.squareup.retrofit2:adapter-rxjava2:2.4.0'
//Rx
implementation 'io.reactivex.rxjava2:rxjava:2.1.9'
implementation 'io.reactivex.rxjava2:rxandroid:2.0.2'
//Image
implementation 'com.squareup.picasso:picasso:2.71828'
//Testing
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment