![JAR search and dependency download from the Maven repository](/logo.png)
com.bumptech.glide.annotation.GlideModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of annotations Show documentation
Show all versions of annotations Show documentation
A set of annotations for configuring Glide.
package com.bumptech.glide.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Identifies AppGlideModules and LibraryGlideModules for Glide's annotation processor to merge at
* compile time.
*
* Replaces {@code } tags in AndroidManifest.xml.
*/
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.CLASS)
public @interface GlideModule {
/**
* Returns the name of the class that will be used as a replacement for {@code
* com.bumptech.glide.Glide} in Applications that depend on Glide's generated code.
*/
String glideName() default "GlideApp";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy