Android图片加载库Glide

一集成使用

1.引入glide和okhttp3

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

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

2.

compile'com.github.bumptech.glide:okhttp3-integration:1.4.0@aar'// 这个是用来对接 okhttp3.x 的

然后在AndroidManifest.xml文件添加

android:name="com.bumptech.glide.integration.okhttp3.OkHttpGlideModule"

android:value="GlideModule"/>

在混淆配置文件中

#glide图库

-keepclass com.bumptech.glide..** {*;}

-keepclass com.bumptech.glide.integration.okhttp3.OkHttpGlideModule

#or

#-keep public class * implements com.bumptech.glide.module.GlideModule

你可能感兴趣的:(Android图片加载库Glide)