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

The following examples show how to use com.android.build.gradle.internal.pipeline.TransformManager#SCOPE_FULL_PROJECT . 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: DataLoaderTransform.java    From DataLoader with Apache License 2.0 4 votes vote down vote up
@Override
public Set<? super QualifiedContent.Scope> getScopes() {
    return TransformManager.SCOPE_FULL_PROJECT;
}
 
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<? super QualifiedContent.Scope> getScopes() {
    return TransformManager.SCOPE_FULL_PROJECT;
}
 
Example 3
Source File: WMRouterTransform.java    From WMRouter with Apache License 2.0 4 votes vote down vote up
@Override
public Set<? super QualifiedContent.Scope> getScopes() {
    return TransformManager.SCOPE_FULL_PROJECT;
}
 
Example 4
Source File: AtlasMultiDexListTransform.java    From atlas with Apache License 2.0 4 votes vote down vote up
@Override
public Set<QualifiedContent.Scope> getReferencedScopes() {
    return TransformManager.SCOPE_FULL_PROJECT;
}
 
Example 5
Source File: ResourcesShrinker.java    From atlas with Apache License 2.0 4 votes vote down vote up
public Set<QualifiedContent.Scope> getReferencedScopes() {
    return TransformManager.SCOPE_FULL_PROJECT;
}
 
Example 6
Source File: AtlasDesugarTransform.java    From atlas with Apache License 2.0 4 votes vote down vote up
@NonNull
@Override
public Set<? super QualifiedContent.Scope> getScopes() {
    return TransformManager.SCOPE_FULL_PROJECT;
}
 
Example 7
Source File: TaobaoInstantRunSlicer.java    From atlas with Apache License 2.0 4 votes vote down vote up
@Override
public Set<QualifiedContent.Scope> getScopes() {
    return TransformManager.SCOPE_FULL_PROJECT;
}
 
Example 8
Source File: DelegateProguardTransform.java    From atlas with Apache License 2.0 4 votes vote down vote up
@Override
public Set<? super QualifiedContent.Scope> getScopes() {
    return TransformManager.SCOPE_FULL_PROJECT;
}
 
Example 9
Source File: AbstractTransform.java    From SocialSdkLibrary with Apache License 2.0 4 votes vote down vote up
@Override
public Set<? super QualifiedContent.Scope> getScopes() {
    return TransformManager.SCOPE_FULL_PROJECT;
}
 
Example 10
Source File: ApplicationTransform.java    From EasyRouter with Apache License 2.0 4 votes vote down vote up
@Override
public Set<? super QualifiedContent.Scope> getScopes() {
    return TransformManager.SCOPE_FULL_PROJECT;
}