Retrofit2+RxJava2依赖包一览

版权声明:本文为博主原创文章,转载请注明出处! https://blog.csdn.net/JavaAndroid730/article/details/71421870

为了方便新项目快速导包,一次性记录下来。
依赖包版本号可以自寻搜索最新的来替换即可。

RxJava2相关:
compile ‘io.reactivex.rxjava2:rxjava:2.0.1’
compile ‘io.reactivex.rxjava2:rxandroid:2.0.1’

Retrofit2相关:
//retrofit
compile ‘com.squareup.retrofit2:retrofit:2.1.0’
//Gson converter
compile ‘com.squareup.retrofit2:converter-gson:2.1.0’
//RxJava2 Adapter
compile ‘com.jakewharton.retrofit:retrofit2-rxjava2-adapter:1.0.0’
//okhttp
compile ‘com.squareup.okhttp3:okhttp:3.4.1’
compile ‘com.squareup.okhttp3:logging-interceptor:3.4.1’

猜你喜欢

转载自blog.csdn.net/JavaAndroid730/article/details/71421870