Android 开源库的引用

来源:互联网 发布:python 异或加密算法 编辑:程序博客网 时间:2024/06/15 05:14

1.support design(FloatingActionButton)

compile 'com.android.support:design:24.0.0'

2.support preference

compile 'com.android.support:preference-v7:24.0.0'

3.CardView

compile 'com.android.support:cardview-v7:24.0.0'

4.glide(加载图片)

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

5.RxJava(异步处理)

    compile 'io.reactivex:rxjava:1.1.0'    compile 'io.reactivex:rxandroid:1.1.0'

6.okhttp(网络访问)

compile 'com.squareup.okhttp3:okhttp:3.6.0'

7.Retrofit(针对Android和Java类型安全的http客户端)
gson(解析json)

    compile 'com.squareup.retrofit2:retrofit:2.1.0'    compile 'com.squareup.retrofit2:adapter-rxjava:2.1.0'    compile 'com.squareup.retrofit2:converter-gson:2.1.0'    compile 'com.google.code.gson:gson:2.8.0'
0 0
原创粉丝点击