Package org.gradle.api.artifacts

Examples of org.gradle.api.artifacts.Configuration


        basePlugin.addPackageTasks(appVariantData, assembleTask, true /*publishApk*/);
    }

    private void handleMicroApp(@NonNull BaseVariantData variantData) {

        Configuration config = basePlugin.getProject().getConfigurations().findByName(
                CONFIG_WEAR_APP);
        Set<File> file = config.getFiles();

        int count = file.size();
        if (count == 1) {
            if (variantData.getVariantConfiguration().getBuildType().isEmbedMicroApp()) {
                basePlugin.createGenerateMicroApkDataTask(variantData, config);
View Full Code Here

TOP

Related Classes of org.gradle.api.artifacts.Configuration

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.