Skip to content Skip to sidebar Skip to footer

Failed To Find Generatedappglidemodule

Failed to find GeneratedAppGlideModule. You should include an annotationProcessor compile dependency on com.github.bumptech.glide:glide:compiler in your application and a @GlideMod

Solution 1:

Remove apply plugin: 'kotlin-kapt' in build.gradle.

It solved my problem!

And if your project is kotlin,try replace "annotationProcessor" to "kapt"

Solution 2:

If you use Gradle you can add a dependency on Glide using either Maven Central or JCenter. You will also need to include a dependency on the support library. check documentation here 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'
}

Solution 3:

Do this-:

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

or

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

If you are using android 3.0 then use this-:

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

Post a Comment for "Failed To Find Generatedappglidemodule"