美文网首页
Android图片加载库Glide

Android图片加载库Glide

作者: 飞飞舞舞 | 来源:发表于2016-09-21 18:12 被阅读0次

    一集成使用

    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

          本文链接:https://www.haomeiwen.com/subject/ikmvsttx.html