在使用okhttp3 + Glide的时候,按照官方文档一步一步来,但是GlideApp一直无法生成,排查了一下午,发现集成方面并没有什么问题,后来直接在Logcat中发现一条Glide的log如下:
Failed to find GeneratedAppGlideModule. You should include an annotationProcessor compile dependency on com.github.bumptech.glide:compiler in your application and a @GlideModule annotated AppGlideModule implementation or LibraryGlideModules will be silently ignored
之前一直是把三方库放到了一个library中统一管理,但是 com.github.bumptech.glide:compiler 必须集成到application中的build.gradle中才能生效!!!
把代码改过来就正常生产GlideApp了,坑
网友评论