GlideApp not found using LibraryGlideModule (Glide

2019-01-20 16:04发布

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?

标签: android glide
1条回答
我欲成王,谁敢阻挡
2楼-- · 2019-01-20 16:59

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

And GlideApp Class will automatically generated

查看更多
登录 后发表回答