Java Code Examples for com.android.build.gradle.internal.pipeline.TransformManager#CONTENT_CLASS

The following examples show how to use com.android.build.gradle.internal.pipeline.TransformManager#CONTENT_CLASS . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: AtlasProguardTransform.java    From atlas with Apache License 2.0 5 votes vote down vote up
@Override
public Set<ContentType> getOutputTypes() {
    if (appVariantContext.getAtlasExtension().getTBuildConfig().isFastProguard() && !appVariantContext.getAtlasExtension().getTBuildConfig().isKeepJavaResAfterProguard()) {
        return TransformManager.CONTENT_CLASS;
    }
    return super.getOutputTypes();
}
 
Example 2
Source File: CollectTransform.java    From bcm-android with GNU General Public License v3.0 4 votes vote down vote up
@Override
public Set<QualifiedContent.ContentType> getInputTypes() {
    return TransformManager.CONTENT_CLASS;
}
 
Example 3
Source File: WMRouterTransform.java    From WMRouter with Apache License 2.0 4 votes vote down vote up
@Override
public Set<QualifiedContent.ContentType> getInputTypes() {
    return TransformManager.CONTENT_CLASS;
}
 
Example 4
Source File: ClassInjectTransform.java    From atlas with Apache License 2.0 4 votes vote down vote up
@Override
public Set<QualifiedContent.ContentType> getInputTypes() {
    return TransformManager.CONTENT_CLASS;
}
 
Example 5
Source File: AtlasDesugarTransform.java    From atlas with Apache License 2.0 4 votes vote down vote up
@NonNull
@Override
public Set<QualifiedContent.ContentType> getInputTypes() {
    return TransformManager.CONTENT_CLASS;
}
 
Example 6
Source File: AbstractTransform.java    From SocialSdkLibrary with Apache License 2.0 4 votes vote down vote up
@Override
public Set<QualifiedContent.ContentType> getInputTypes() {
    return TransformManager.CONTENT_CLASS;
}
 
Example 7
Source File: LibraryTransform.java    From EasyRouter with Apache License 2.0 4 votes vote down vote up
@Override
public Set<QualifiedContent.ContentType> getInputTypes() {
    return TransformManager.CONTENT_CLASS;
}
 
Example 8
Source File: ApplicationTransform.java    From EasyRouter with Apache License 2.0 4 votes vote down vote up
@Override
public Set<QualifiedContent.ContentType> getInputTypes() {
    return TransformManager.CONTENT_CLASS;
}