4

构建库模块。在使用库模块的示例应用程序中

@GlideModule
class DPAppGlideModule : AppGlideModule() {
    override fun isManifestParsingEnabled(): Boolean {
        return false
    }
}

并且在库模块中有:

@GlideModule
public final class LibGlideModule extends LibraryGlideModule {
}

并在库模块中使用 GlideApp 生成的 api

fun ImageView.loadImg(imageUrl: String) {
var requestOptions : RequestOptions  = RequestOptions()
requestOptions.diskCacheStrategy(DiskCacheStrategy.ALL)
if (!TextUtils.isEmpty(imageUrl)) {
    GlideApp.with(this.context)
            .setDefaultRequestOptions(requestOptions)
            .load(imageUrl)
            .into(this)
}

}

但由于这是库模块,不能对应用程序模块有体面,所以它无法编译

如何在库模块中使用 GlideApp 生成的 api?

参考 - https://bumptech.github.io/glide/doc/configuration.html

4

1 回答 1

0

只需添加

annotationProcessor com.github.bumptech.glide:compiler:4.8.0

模块 gradle 文件中的依赖项。同步项目然后清理并重建它。

如果你的模块使用 kotlin. 将“annotationProcessor”更改为“kapt”。

小心如果你有其他模块依赖,确保你使用正确的 GlideApp 对象。也许其他模块有它自己的 GlideApp 对象

于 2021-05-19T08:50:55.977 回答