Android Glide使用遇到的问题
Android Glide中的注解不兼容AndroidX
今天在进行Glide二次封装的时候,发现Glide中的注解不兼容androidX。查找了一些资料,最后总结一下:
参考资料:https://github.com/bumptech/glide/issues/3185
问题描述:当我们进行Glide框架引用的时候,我们通常是按照如下方式:
implementation 'com.github.bumptech.glide:glide:4.9.0'
annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'
implementation 'com.github.bumptech.glide:okhttp3-integration:4.9.0'
我们在使用的时候回发现提示是这样的:
android.support.annotation.CheckResult 和 android.support.annotation.NonNull 提示是不存在的
根据上面GitHub中获取到的知识点总结方法如下的: