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
All above answer is True and work fine
but i noticed when use #placeholder and #error method the glide work fine with out build GlideModule class as mentioned above
Example : When use glide like this is not work and give must build GlideModule
Glide.with(this)
.load(uri)
.into(imageView);
and this is work fine
Glide.with(this).load(uri).placeholder(android.R.drawable.progress_indeterminate_horizontal).error(android.R.drawable.stat_notify_error).into(imageView);