Glide showing error: Failed to find GeneratedAppGlideModule

前端 未结 6 1327
小鲜肉
小鲜肉 2020-12-05 09:37

I am trying to load an image using glide but somehow I can not load the image using glide. As it shows following error:

Failed to find GeneratedAppGli

6条回答
  •  青春惊慌失措
    2020-12-05 10:08

    In addition to Ridhi's Answer:

    For me to make it work properly I had to include isManifestParsingEnabled.

    import com.bumptech.glide.annotation.GlideModule;
    import com.bumptech.glide.module.AppGlideModule;
    
    @GlideModule
    public class MyGlideApp extends AppGlideModule {
    
        @Override
        public boolean isManifestParsingEnabled() {
            return false;
        }
    
    }
    

提交回复
热议问题