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

com.bumptech.glide.annotation.GlideModule Maven / Gradle / Ivy

There is a newer version: 5.0.0-rc01
Show newest version
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 tags in AndroidManifest.xml. */ @Target(ElementType.TYPE) @Retention(RetentionPolicy.SOURCE) public @interface GlideModule { /** * Returns the name of the class that will be used as a replacement for * {@link com.bumptech.glide.Glide} in Applications that depend on Glide's generated code. */ String glideName() default "GlideApp"; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy