无法找到GeneratedAppGlideModule

时间:2018-01-12 05:45:59

标签: android image android-glide

无法找到GeneratedAppGlideModule。你应该在com.github.bumptech.glide中包含一个annotationProcessor编译依赖项:你的应用程序中的glide:compiler和一个@GlideModule带注释的AppGlideModule实现或者将默默忽略LibraryGlideModules

在Gradle

compile 'com.github.bumptech.glide:glide:4.1.1'
annotationProcessor 'com.github.bumptech.glide:compiler:4.1.1'

3 个答案:

答案 0 :(得分:0)

如果使用Gradle,则可以使用Maven Central或JCenter添加对Glide的依赖。您还需要包括对支持库的依赖。 在docs

中查看文档
repositories {
  mavenCentral()
  maven { url 'https://maven.google.com' }
}

dependencies {
    compile 'com.github.bumptech.glide:glide:4.8.0'
    annotationProcessor 'com.github.bumptech.glide:compiler:4.8.0'
}

答案 1 :(得分:0)

删除build.gradle中的apply plugin: 'kotlin-kapt'

它解决了我的问题!

如果您的项目是kotlin,请尝试将“ annotationProcessor”替换为“ kapt”

答案 2 :(得分:-1)

这样做 - :

compile 'com.github.bumptech.glide:glide:3.7.0'

compile 'com.github.bumptech.glide:glide:4.0.0'

如果您使用的是Android 3.0,请使用此 - :

implementation 'com.github.bumptech.glide:glide:4.5.0'