Last active
November 4, 2018 09:52
-
-
Save imrankst1221/07dfe4bc750db951ae85158431614381 to your computer and use it in GitHub Desktop.
Add Dependent Libraries and Permission on build.gradle (Module app)
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
//https://github.com/google/gson | |
implementation 'com.google.code.gson:gson:2.8.5' | |
//https://github.com/square/okhttp | |
implementation 'com.squareup.okhttp3:okhttp:3.10.0' | |
implementation 'com.squareup.okhttp3:logging-interceptor:3.9.0' | |
// https://github.com/square/retrofit | |
implementation 'com.squareup.retrofit2:retrofit:2.3.0' | |
implementation 'com.squareup.retrofit2:converter-gson:2.3.0' | |
implementation 'com.squareup.retrofit2:adapter-rxjava2:2.3.0' | |
implementation 'com.squareup.retrofit2:converter-scalars:2.3.0' | |
// https://github.com/ReactiveX/RxAndroid | |
implementation 'io.reactivex.rxjava2:rxandroid:2.0.1' | |
implementation 'io.reactivex.rxjava2:rxjava:2.1.7' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment