项目引入

项目引入包

1.网络请求

- Retrofit    封装其他包
- OkHttp        网络请求
- Gson        解析json数据
- RxJava    、RxAndroid    事件处理

compile 'com.squareup.retrofit2:retrofit:2.1.0'
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
compile 'com.squareup.okhttp3:okhttp:3.3.1'
compile 'com.google.code.gson:gson:2.3.1'
compile 'io.reactivex:rxandroid:1.2.1'
compile 'io.reactivex:rxjava:1.1.6'

2.图片加载

- Glide        加载图片框架

compile 'com.github.bumptech.glide:glide:3.7.0'

3.日志打印

-

4.数据存储

-

5.列表刷新加载

- PullToRefresh        列表刷新与加载

https://github.com/chrisbanes/Android-PullToRefresh 非gradle项目,将源码导入项目中。

6.支付

- 支付宝 (支付、打赏)

你可能感兴趣的:(项目引入)