Package com.android.build.gradle.internal.dsl

Examples of com.android.build.gradle.internal.dsl.Splits


     */
    public void createAndroidTasks(@Nullable SigningConfig signingOverride) {
        // Add a compile lint task
        basePlugin.createLintCompileTask();

        Splits splits = basePlugin.getExtension().getSplits();
        Set<String> densities = splits.getDensityFilters();
        Set<String> abis = splits.getAbiFilters();

        if (productFlavors.isEmpty()) {
            createTasksForDefaultBuild(densities, abis, signingOverride);
        } else {
            // there'll be more than one test app, so we need a top level assembleTest
View Full Code Here

TOP

Related Classes of com.android.build.gradle.internal.dsl.Splits

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.