Android 开源库的引用

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'

猜你喜欢

转载自blog.csdn.net/zzldm/article/details/55506251