All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bumptech.glide.integration.okhttp3.OkHttpLibraryGlideModule Maven / Gradle / Ivy

There is a newer version: 5.0.0-rc01
Show newest version
package com.bumptech.glide.integration.okhttp3;

import android.content.Context;
import com.bumptech.glide.Registry;
import com.bumptech.glide.annotation.GlideModule;
import com.bumptech.glide.load.model.GlideUrl;
import com.bumptech.glide.module.AppGlideModule;
import com.bumptech.glide.module.LibraryGlideModule;
import java.io.InputStream;

/**
 * Registers OkHttp related classes via Glide's annotation processor.
 *
 * 

For Applications that depend on this library and include an * {@link AppGlideModule} and Glide's annotation processor, this class * will be automatically included. */ @GlideModule public final class OkHttpLibraryGlideModule extends LibraryGlideModule { @Override public void registerComponents(Context context, Registry registry) { registry.replace(GlideUrl.class, InputStream.class, new OkHttpUrlLoader.Factory()); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy