GlideApp not found using LibraryGlideModule (Glide

2019-01-20 16:18发布

问题:

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?

回答1:

In your Android Studio: - Click menu Build - Clik Make Module

And GlideApp Class will automatically generated



标签: android glide