GlideApp无法生成的问题
程序员文章站
2022-05-03 12:50:21
...
在Glide4.x之后,流式api使用的GlideApp可能发生无法编译生成的问题。
# 这个如果在 lib-module 中,使用 api 'xxx'
implementation 'com.github.bumptech.glide:glide:4.9.0'
#这个annotationProcessor,需要放在 app-module 中
annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'
另外,
// 这个AppGlideModule需要放在 app-module 中的应用名的包下(比如application id: com.example.glide)
package com.example.glide
@GlideModule
public class MyAppGlideModule extends AppGlideModule {
}
如此,再编译之后即可使用GlideApp。
转载于:https://www.jianshu.com/p/b3d6a03a894c