Using Glide 4 in combination with okhttp3 and a LibraryGlideModule:
@GlideModule
public final class MyGlideModule extends LibraryGlideModule {
@Override
public void registerComponents(Context context, Glide glide, Registry registry) {
registry.replace(GlideUrl.class, InputStream.class, new OkHttpUrlLoader.Factory());
}
}
The GlideApp class is not generated when building, while it is when I extend AppGlideModule. Using LibraryGlideModule there seems to be no generated Glide classes at all.
What am I doing wrong?
In your Android Studio: - Click menu Build - Clik Make Module
And GlideApp Class will automatically generated