After Going Through tons of forums about same issue, I still not been able to resolve the GlideApp error. It says it cannot be resolved. Here is the screenshot:
Here is the java class to use details from above
My build.gradle file already contains:
compile 'com.github.bumptech.glide:glide:4.1.1'
annotationProcessor 'com.github.bumptech.glide:compiler:4.1.1'
Both and also I have class with below code:
import com.bumptech.glide.annotation.GlideModule;
import com.bumptech.glide.module.AppGlideModule;
@GlideModule
public final class CustomAppGlideModule extends AppGlideModule {
}
And I'm using this to to request for:
When I use Glide.with Then it Error says
But still it doesn't solve the problem.


