From a17c4ad478dae252faf6ea05e0659796cfa8ffa9 Mon Sep 17 00:00:00 2001 From: Felix Angelov Date: Wed, 17 May 2023 11:03:35 -0500 Subject: [PATCH] fix(shorebird_cli): `productFlavor` casing (#502) --- .../lib/src/shorebird_flavor_mixin.dart | 6 +- .../test/fixtures/gradle_app_tasks.txt | 2086 +++++++++-------- .../test/src/commands/init_command_test.dart | 16 +- 3 files changed, 1063 insertions(+), 1045 deletions(-) diff --git a/packages/shorebird_cli/lib/src/shorebird_flavor_mixin.dart b/packages/shorebird_cli/lib/src/shorebird_flavor_mixin.dart index 4886e161..e510754a 100644 --- a/packages/shorebird_cli/lib/src/shorebird_flavor_mixin.dart +++ b/packages/shorebird_cli/lib/src/shorebird_flavor_mixin.dart @@ -33,9 +33,9 @@ mixin ShorebirdFlavorMixin on ShorebirdJavaMixin { for (final task in '${result.stdout}'.split('\n')) { final match = assembleTaskPattern.matchAsPrefix(task); if (match != null) { - final variant = match.group(1)!.toLowerCase(); - if (!variant.endsWith('test')) { - variants.add(variant); + final variant = match.group(1)!; + if (!variant.toLowerCase().endsWith('test')) { + variants.add(variant[0].toLowerCase() + variant.substring(1)); } } } diff --git a/packages/shorebird_cli/test/fixtures/gradle_app_tasks.txt b/packages/shorebird_cli/test/fixtures/gradle_app_tasks.txt index 2776a55c..7c10e1f8 100644 --- a/packages/shorebird_cli/test/fixtures/gradle_app_tasks.txt +++ b/packages/shorebird_cli/test/fixtures/gradle_app_tasks.txt @@ -17,10 +17,14 @@ assemble - Assemble main outputs for all the variants. assembleAndroidTest - Assembles all the Test applications. assembleDebug - Assembles main outputs for all Debug variants. assembleDevelopment - Assembles main outputs for all Development variants. +assembleDevelopmentInternal - Assembles main outputs for all DevelopmentInternal variants. +assembleInternal - Assembles main outputs for all Internal variants. assembleProduction - Assembles main outputs for all Production variants. +assembleProductionInternal - Assembles main outputs for all ProductionInternal variants. assembleProfile - Assembles main outputs for all Profile variants. assembleRelease - Assembles main outputs for all Release variants. assembleStaging - Assembles main outputs for all Staging variants. +assembleStagingInternal - Assembles main outputs for all StagingInternal variants. build - Assembles and tests this project. buildDependents - Assembles and tests this project and all projects that depend on it. buildKotlinToolingMetadata - Build metadata json file containing information about the used Kotlin tooling @@ -28,32 +32,36 @@ buildNeeded - Assembles and tests this project and all projects it depends on. bundle - Assemble bundles for all the variants. bundleDebug - Assembles bundles for all Debug variants. bundleDevelopment - Assembles bundles for all Development variants. +bundleDevelopmentInternal - Assembles bundles for all DevelopmentInternal variants. +bundleInternal - Assembles bundles for all Internal variants. bundleProduction - Assembles bundles for all Production variants. +bundleProductionInternal - Assembles bundles for all ProductionInternal variants. bundleProfile - Assembles bundles for all Profile variants. bundleRelease - Assembles bundles for all Release variants. bundleStaging - Assembles bundles for all Staging variants. +bundleStagingInternal - Assembles bundles for all StagingInternal variants. clean - Deletes the build directory. -compileDevelopmentDebugAndroidTestSources -compileDevelopmentDebugSources -compileDevelopmentDebugUnitTestSources -compileDevelopmentProfileSources -compileDevelopmentProfileUnitTestSources -compileDevelopmentReleaseSources -compileDevelopmentReleaseUnitTestSources -compileProductionDebugAndroidTestSources -compileProductionDebugSources -compileProductionDebugUnitTestSources -compileProductionProfileSources -compileProductionProfileUnitTestSources -compileProductionReleaseSources -compileProductionReleaseUnitTestSources -compileStagingDebugAndroidTestSources -compileStagingDebugSources -compileStagingDebugUnitTestSources -compileStagingProfileSources -compileStagingProfileUnitTestSources -compileStagingReleaseSources -compileStagingReleaseUnitTestSources +compileDevelopmentInternalDebugAndroidTestSources +compileDevelopmentInternalDebugSources +compileDevelopmentInternalDebugUnitTestSources +compileDevelopmentInternalProfileSources +compileDevelopmentInternalProfileUnitTestSources +compileDevelopmentInternalReleaseSources +compileDevelopmentInternalReleaseUnitTestSources +compileProductionInternalDebugAndroidTestSources +compileProductionInternalDebugSources +compileProductionInternalDebugUnitTestSources +compileProductionInternalProfileSources +compileProductionInternalProfileUnitTestSources +compileProductionInternalReleaseSources +compileProductionInternalReleaseUnitTestSources +compileStagingInternalDebugAndroidTestSources +compileStagingInternalDebugSources +compileStagingInternalDebugUnitTestSources +compileStagingInternalProfileSources +compileStagingInternalProfileUnitTestSources +compileStagingInternalReleaseSources +compileStagingInternalReleaseUnitTestSources Help tasks ---------- @@ -70,31 +78,31 @@ tasks - Displays the tasks runnable from project ':app'. Install tasks ------------- -installDevelopmentDebug - Installs the DebugDevelopmentDebug build. -installDevelopmentDebugAndroidTest - Installs the android (on device) tests for the DevelopmentDebug build. -installDevelopmentProfile - Installs the ProfileDevelopmentProfile build. -installDevelopmentRelease - Installs the ReleaseDevelopmentRelease build. -installProductionDebug - Installs the DebugProductionDebug build. -installProductionDebugAndroidTest - Installs the android (on device) tests for the ProductionDebug build. -installProductionProfile - Installs the ProfileProductionProfile build. -installProductionRelease - Installs the ReleaseProductionRelease build. -installStagingDebug - Installs the DebugStagingDebug build. -installStagingDebugAndroidTest - Installs the android (on device) tests for the StagingDebug build. -installStagingProfile - Installs the ProfileStagingProfile build. -installStagingRelease - Installs the ReleaseStagingRelease build. +installDevelopmentInternalDebug - Installs the DebugDevelopmentInternalDebug build. +installDevelopmentInternalDebugAndroidTest - Installs the android (on device) tests for the DevelopmentInternalDebug build. +installDevelopmentInternalProfile - Installs the ProfileDevelopmentInternalProfile build. +installDevelopmentInternalRelease - Installs the ReleaseDevelopmentInternalRelease build. +installProductionInternalDebug - Installs the DebugProductionInternalDebug build. +installProductionInternalDebugAndroidTest - Installs the android (on device) tests for the ProductionInternalDebug build. +installProductionInternalProfile - Installs the ProfileProductionInternalProfile build. +installProductionInternalRelease - Installs the ReleaseProductionInternalRelease build. +installStagingInternalDebug - Installs the DebugStagingInternalDebug build. +installStagingInternalDebugAndroidTest - Installs the android (on device) tests for the StagingInternalDebug build. +installStagingInternalProfile - Installs the ProfileStagingInternalProfile build. +installStagingInternalRelease - Installs the ReleaseStagingInternalRelease build. uninstallAll - Uninstall all applications. -uninstallDevelopmentDebug - Uninstalls the DebugDevelopmentDebug build. -uninstallDevelopmentDebugAndroidTest - Uninstalls the android (on device) tests for the DevelopmentDebug build. -uninstallDevelopmentProfile - Uninstalls the ProfileDevelopmentProfile build. -uninstallDevelopmentRelease - Uninstalls the ReleaseDevelopmentRelease build. -uninstallProductionDebug - Uninstalls the DebugProductionDebug build. -uninstallProductionDebugAndroidTest - Uninstalls the android (on device) tests for the ProductionDebug build. -uninstallProductionProfile - Uninstalls the ProfileProductionProfile build. -uninstallProductionRelease - Uninstalls the ReleaseProductionRelease build. -uninstallStagingDebug - Uninstalls the DebugStagingDebug build. -uninstallStagingDebugAndroidTest - Uninstalls the android (on device) tests for the StagingDebug build. -uninstallStagingProfile - Uninstalls the ProfileStagingProfile build. -uninstallStagingRelease - Uninstalls the ReleaseStagingRelease build. +uninstallDevelopmentInternalDebug - Uninstalls the DebugDevelopmentInternalDebug build. +uninstallDevelopmentInternalDebugAndroidTest - Uninstalls the android (on device) tests for the DevelopmentInternalDebug build. +uninstallDevelopmentInternalProfile - Uninstalls the ProfileDevelopmentInternalProfile build. +uninstallDevelopmentInternalRelease - Uninstalls the ReleaseDevelopmentInternalRelease build. +uninstallProductionInternalDebug - Uninstalls the DebugProductionInternalDebug build. +uninstallProductionInternalDebugAndroidTest - Uninstalls the android (on device) tests for the ProductionInternalDebug build. +uninstallProductionInternalProfile - Uninstalls the ProfileProductionInternalProfile build. +uninstallProductionInternalRelease - Uninstalls the ReleaseProductionInternalRelease build. +uninstallStagingInternalDebug - Uninstalls the DebugStagingInternalDebug build. +uninstallStagingInternalDebugAndroidTest - Uninstalls the android (on device) tests for the StagingInternalDebug build. +uninstallStagingInternalProfile - Uninstalls the ProfileStagingInternalProfile build. +uninstallStagingInternalRelease - Uninstalls the ReleaseStagingInternalRelease build. Verification tasks ------------------ @@ -102,1023 +110,1023 @@ check - Runs all checks. checkJetifier - Checks whether Jetifier is needed for the current project connectedAndroidTest - Installs and runs instrumentation tests for all flavors on connected devices. connectedCheck - Runs all device checks on currently connected devices. -connectedDevelopmentDebugAndroidTest - Installs and runs the tests for developmentDebug on connected devices. -connectedProductionDebugAndroidTest - Installs and runs the tests for productionDebug on connected devices. -connectedStagingDebugAndroidTest - Installs and runs the tests for stagingDebug on connected devices. +connectedDevelopmentInternalDebugAndroidTest - Installs and runs the tests for developmentInternalDebug on connected devices. +connectedProductionInternalDebugAndroidTest - Installs and runs the tests for productionInternalDebug on connected devices. +connectedStagingInternalDebugAndroidTest - Installs and runs the tests for stagingInternalDebug on connected devices. deviceAndroidTest - Installs and runs instrumentation tests using all Device Providers. deviceCheck - Runs all device checks using Device Providers and Test Servers. lint - Runs lint on the default variant. -lintAnalyzeDevelopmentDebug - Run lint analysis on the developmentDebug variant -lintAnalyzeDevelopmentProfile - Run lint analysis on the developmentProfile variant -lintAnalyzeDevelopmentRelease - Run lint analysis on the developmentRelease variant -lintAnalyzeProductionDebug - Run lint analysis on the productionDebug variant -lintAnalyzeProductionProfile - Run lint analysis on the productionProfile variant -lintAnalyzeProductionRelease - Run lint analysis on the productionRelease variant -lintAnalyzeStagingDebug - Run lint analysis on the stagingDebug variant -lintAnalyzeStagingProfile - Run lint analysis on the stagingProfile variant -lintAnalyzeStagingRelease - Run lint analysis on the stagingRelease variant -lintDevelopmentDebug - Print text output from the corresponding lint report task -lintDevelopmentProfile - Print text output from the corresponding lint report task -lintDevelopmentRelease - Print text output from the corresponding lint report task +lintAnalyzeDevelopmentInternalDebug - Run lint analysis on the developmentInternalDebug variant +lintAnalyzeDevelopmentInternalProfile - Run lint analysis on the developmentInternalProfile variant +lintAnalyzeDevelopmentInternalRelease - Run lint analysis on the developmentInternalRelease variant +lintAnalyzeProductionInternalDebug - Run lint analysis on the productionInternalDebug variant +lintAnalyzeProductionInternalProfile - Run lint analysis on the productionInternalProfile variant +lintAnalyzeProductionInternalRelease - Run lint analysis on the productionInternalRelease variant +lintAnalyzeStagingInternalDebug - Run lint analysis on the stagingInternalDebug variant +lintAnalyzeStagingInternalProfile - Run lint analysis on the stagingInternalProfile variant +lintAnalyzeStagingInternalRelease - Run lint analysis on the stagingInternalRelease variant +lintDevelopmentInternalDebug - Print text output from the corresponding lint report task +lintDevelopmentInternalProfile - Print text output from the corresponding lint report task +lintDevelopmentInternalRelease - Print text output from the corresponding lint report task lintFix - Runs lint on the default variant and applies any safe suggestions to the source code. -lintFixDevelopmentDebug - Fix lint on the developmentDebug variant -lintFixDevelopmentProfile - Fix lint on the developmentProfile variant -lintFixDevelopmentRelease - Fix lint on the developmentRelease variant -lintFixProductionDebug - Fix lint on the productionDebug variant -lintFixProductionProfile - Fix lint on the productionProfile variant -lintFixProductionRelease - Fix lint on the productionRelease variant -lintFixStagingDebug - Fix lint on the stagingDebug variant -lintFixStagingProfile - Fix lint on the stagingProfile variant -lintFixStagingRelease - Fix lint on the stagingRelease variant -lintProductionDebug - Print text output from the corresponding lint report task -lintProductionProfile - Print text output from the corresponding lint report task -lintProductionRelease - Print text output from the corresponding lint report task -lintReportDevelopmentDebug - Run lint on the developmentDebug variant -lintReportDevelopmentProfile - Run lint on the developmentProfile variant -lintReportDevelopmentRelease - Run lint on the developmentRelease variant -lintReportProductionDebug - Run lint on the productionDebug variant -lintReportProductionProfile - Run lint on the productionProfile variant -lintReportProductionRelease - Run lint on the productionRelease variant -lintReportStagingDebug - Run lint on the stagingDebug variant -lintReportStagingProfile - Run lint on the stagingProfile variant -lintReportStagingRelease - Run lint on the stagingRelease variant -lintStagingDebug - Print text output from the corresponding lint report task -lintStagingProfile - Print text output from the corresponding lint report task -lintStagingRelease - Print text output from the corresponding lint report task -lintVitalAnalyzeDevelopmentRelease - Run lint analysis with only the fatal issues enabled on the developmentRelease variant -lintVitalAnalyzeProductionRelease - Run lint analysis with only the fatal issues enabled on the productionRelease variant -lintVitalAnalyzeStagingRelease - Run lint analysis with only the fatal issues enabled on the stagingRelease variant -lintVitalDevelopmentRelease - Print text output from the corresponding lint report task -lintVitalProductionRelease - Print text output from the corresponding lint report task -lintVitalReportDevelopmentRelease - Run lint with only the fatal issues enabled on the developmentRelease variant -lintVitalReportProductionRelease - Run lint with only the fatal issues enabled on the productionRelease variant -lintVitalReportStagingRelease - Run lint with only the fatal issues enabled on the stagingRelease variant -lintVitalStagingRelease - Print text output from the corresponding lint report task +lintFixDevelopmentInternalDebug - Fix lint on the developmentInternalDebug variant +lintFixDevelopmentInternalProfile - Fix lint on the developmentInternalProfile variant +lintFixDevelopmentInternalRelease - Fix lint on the developmentInternalRelease variant +lintFixProductionInternalDebug - Fix lint on the productionInternalDebug variant +lintFixProductionInternalProfile - Fix lint on the productionInternalProfile variant +lintFixProductionInternalRelease - Fix lint on the productionInternalRelease variant +lintFixStagingInternalDebug - Fix lint on the stagingInternalDebug variant +lintFixStagingInternalProfile - Fix lint on the stagingInternalProfile variant +lintFixStagingInternalRelease - Fix lint on the stagingInternalRelease variant +lintProductionInternalDebug - Print text output from the corresponding lint report task +lintProductionInternalProfile - Print text output from the corresponding lint report task +lintProductionInternalRelease - Print text output from the corresponding lint report task +lintReportDevelopmentInternalDebug - Run lint on the developmentInternalDebug variant +lintReportDevelopmentInternalProfile - Run lint on the developmentInternalProfile variant +lintReportDevelopmentInternalRelease - Run lint on the developmentInternalRelease variant +lintReportProductionInternalDebug - Run lint on the productionInternalDebug variant +lintReportProductionInternalProfile - Run lint on the productionInternalProfile variant +lintReportProductionInternalRelease - Run lint on the productionInternalRelease variant +lintReportStagingInternalDebug - Run lint on the stagingInternalDebug variant +lintReportStagingInternalProfile - Run lint on the stagingInternalProfile variant +lintReportStagingInternalRelease - Run lint on the stagingInternalRelease variant +lintStagingInternalDebug - Print text output from the corresponding lint report task +lintStagingInternalProfile - Print text output from the corresponding lint report task +lintStagingInternalRelease - Print text output from the corresponding lint report task +lintVitalAnalyzeDevelopmentInternalRelease - Run lint analysis with only the fatal issues enabled on the developmentInternalRelease variant +lintVitalAnalyzeProductionInternalRelease - Run lint analysis with only the fatal issues enabled on the productionInternalRelease variant +lintVitalAnalyzeStagingInternalRelease - Run lint analysis with only the fatal issues enabled on the stagingInternalRelease variant +lintVitalDevelopmentInternalRelease - Print text output from the corresponding lint report task +lintVitalProductionInternalRelease - Print text output from the corresponding lint report task +lintVitalReportDevelopmentInternalRelease - Run lint with only the fatal issues enabled on the developmentInternalRelease variant +lintVitalReportProductionInternalRelease - Run lint with only the fatal issues enabled on the productionInternalRelease variant +lintVitalReportStagingInternalRelease - Run lint with only the fatal issues enabled on the stagingInternalRelease variant +lintVitalStagingInternalRelease - Print text output from the corresponding lint report task test - Run unit tests for all variants. -testDevelopmentDebugUnitTest - Run unit tests for the developmentDebug build. -testDevelopmentProfileUnitTest - Run unit tests for the developmentProfile build. -testDevelopmentReleaseUnitTest - Run unit tests for the developmentRelease build. -testProductionDebugUnitTest - Run unit tests for the productionDebug build. -testProductionProfileUnitTest - Run unit tests for the productionProfile build. -testProductionReleaseUnitTest - Run unit tests for the productionRelease build. -testStagingDebugUnitTest - Run unit tests for the stagingDebug build. -testStagingProfileUnitTest - Run unit tests for the stagingProfile build. -testStagingReleaseUnitTest - Run unit tests for the stagingRelease build. +testDevelopmentInternalDebugUnitTest - Run unit tests for the developmentInternalDebug build. +testDevelopmentInternalProfileUnitTest - Run unit tests for the developmentInternalProfile build. +testDevelopmentInternalReleaseUnitTest - Run unit tests for the developmentInternalRelease build. +testProductionInternalDebugUnitTest - Run unit tests for the productionInternalDebug build. +testProductionInternalProfileUnitTest - Run unit tests for the productionInternalProfile build. +testProductionInternalReleaseUnitTest - Run unit tests for the productionInternalRelease build. +testStagingInternalDebugUnitTest - Run unit tests for the stagingInternalDebug build. +testStagingInternalProfileUnitTest - Run unit tests for the stagingInternalProfile build. +testStagingInternalReleaseUnitTest - Run unit tests for the stagingInternalRelease build. Other tasks ----------- -analyzeDevelopmentDebugAndroidTestDependencies -analyzeDevelopmentDebugDependencies -analyzeDevelopmentDebugUnitTestDependencies -analyzeDevelopmentProfileDependencies -analyzeDevelopmentProfileUnitTestDependencies -analyzeDevelopmentReleaseDependencies -analyzeDevelopmentReleaseUnitTestDependencies -analyzeProductionDebugAndroidTestDependencies -analyzeProductionDebugDependencies -analyzeProductionDebugUnitTestDependencies -analyzeProductionProfileDependencies -analyzeProductionProfileUnitTestDependencies -analyzeProductionReleaseDependencies -analyzeProductionReleaseUnitTestDependencies -analyzeStagingDebugAndroidTestDependencies -analyzeStagingDebugDependencies -analyzeStagingDebugUnitTestDependencies -analyzeStagingProfileDependencies -analyzeStagingProfileUnitTestDependencies -analyzeStagingReleaseDependencies -analyzeStagingReleaseUnitTestDependencies -assembleDevelopmentDebug - Assembles main output for variant developmentDebug -assembleDevelopmentDebugAndroidTest - Assembles main output for variant developmentDebugAndroidTest -assembleDevelopmentDebugUnitTest - Assembles main output for variant developmentDebugUnitTest -assembleDevelopmentProfile - Assembles main output for variant developmentProfile -assembleDevelopmentProfileUnitTest - Assembles main output for variant developmentProfileUnitTest -assembleDevelopmentRelease - Assembles main output for variant developmentRelease -assembleDevelopmentReleaseUnitTest - Assembles main output for variant developmentReleaseUnitTest -assembleProductionDebug - Assembles main output for variant productionDebug -assembleProductionDebugAndroidTest - Assembles main output for variant productionDebugAndroidTest -assembleProductionDebugUnitTest - Assembles main output for variant productionDebugUnitTest -assembleProductionProfile - Assembles main output for variant productionProfile -assembleProductionProfileUnitTest - Assembles main output for variant productionProfileUnitTest -assembleProductionRelease - Assembles main output for variant productionRelease -assembleProductionReleaseUnitTest - Assembles main output for variant productionReleaseUnitTest -assembleStagingDebug - Assembles main output for variant stagingDebug -assembleStagingDebugAndroidTest - Assembles main output for variant stagingDebugAndroidTest -assembleStagingDebugUnitTest - Assembles main output for variant stagingDebugUnitTest -assembleStagingProfile - Assembles main output for variant stagingProfile -assembleStagingProfileUnitTest - Assembles main output for variant stagingProfileUnitTest -assembleStagingRelease - Assembles main output for variant stagingRelease -assembleStagingReleaseUnitTest - Assembles main output for variant stagingReleaseUnitTest -buildDevelopmentDebugPreBundle -buildDevelopmentProfilePreBundle -buildDevelopmentReleasePreBundle -buildProductionDebugPreBundle -buildProductionProfilePreBundle -buildProductionReleasePreBundle -buildStagingDebugPreBundle -buildStagingProfilePreBundle -buildStagingReleasePreBundle -bundleDevelopmentDebug - Assembles bundle for variant developmentDebug -bundleDevelopmentDebugAndroidTestClassesToCompileJar -bundleDevelopmentDebugAndroidTestClassesToRuntimeJar -bundleDevelopmentDebugClassesToCompileJar -bundleDevelopmentDebugClassesToRuntimeJar -bundleDevelopmentDebugResources -bundleDevelopmentDebugUnitTestClassesToCompileJar -bundleDevelopmentDebugUnitTestClassesToRuntimeJar -bundleDevelopmentProfile - Assembles bundle for variant developmentProfile -bundleDevelopmentProfileClassesToCompileJar -bundleDevelopmentProfileClassesToRuntimeJar -bundleDevelopmentProfileResources -bundleDevelopmentProfileUnitTestClassesToCompileJar -bundleDevelopmentProfileUnitTestClassesToRuntimeJar -bundleDevelopmentRelease - Assembles bundle for variant developmentRelease -bundleDevelopmentReleaseClassesToCompileJar -bundleDevelopmentReleaseClassesToRuntimeJar -bundleDevelopmentReleaseResources -bundleDevelopmentReleaseUnitTestClassesToCompileJar -bundleDevelopmentReleaseUnitTestClassesToRuntimeJar -bundleProductionDebug - Assembles bundle for variant productionDebug -bundleProductionDebugAndroidTestClassesToCompileJar -bundleProductionDebugAndroidTestClassesToRuntimeJar -bundleProductionDebugClassesToCompileJar -bundleProductionDebugClassesToRuntimeJar -bundleProductionDebugResources -bundleProductionDebugUnitTestClassesToCompileJar -bundleProductionDebugUnitTestClassesToRuntimeJar -bundleProductionProfile - Assembles bundle for variant productionProfile -bundleProductionProfileClassesToCompileJar -bundleProductionProfileClassesToRuntimeJar -bundleProductionProfileResources -bundleProductionProfileUnitTestClassesToCompileJar -bundleProductionProfileUnitTestClassesToRuntimeJar -bundleProductionRelease - Assembles bundle for variant productionRelease -bundleProductionReleaseClassesToCompileJar -bundleProductionReleaseClassesToRuntimeJar -bundleProductionReleaseResources -bundleProductionReleaseUnitTestClassesToCompileJar -bundleProductionReleaseUnitTestClassesToRuntimeJar -bundleStagingDebug - Assembles bundle for variant stagingDebug -bundleStagingDebugAndroidTestClassesToCompileJar -bundleStagingDebugAndroidTestClassesToRuntimeJar -bundleStagingDebugClassesToCompileJar -bundleStagingDebugClassesToRuntimeJar -bundleStagingDebugResources -bundleStagingDebugUnitTestClassesToCompileJar -bundleStagingDebugUnitTestClassesToRuntimeJar -bundleStagingProfile - Assembles bundle for variant stagingProfile -bundleStagingProfileClassesToCompileJar -bundleStagingProfileClassesToRuntimeJar -bundleStagingProfileResources -bundleStagingProfileUnitTestClassesToCompileJar -bundleStagingProfileUnitTestClassesToRuntimeJar -bundleStagingRelease - Assembles bundle for variant stagingRelease -bundleStagingReleaseClassesToCompileJar -bundleStagingReleaseClassesToRuntimeJar -bundleStagingReleaseResources -bundleStagingReleaseUnitTestClassesToCompileJar -bundleStagingReleaseUnitTestClassesToRuntimeJar -checkDevelopmentDebugAarMetadata -checkDevelopmentDebugAndroidTestAarMetadata -checkDevelopmentDebugAndroidTestDuplicateClasses -checkDevelopmentDebugDuplicateClasses -checkDevelopmentDebugManifest -checkDevelopmentProfileAarMetadata -checkDevelopmentProfileDuplicateClasses -checkDevelopmentProfileManifest -checkDevelopmentReleaseAarMetadata -checkDevelopmentReleaseDuplicateClasses -checkDevelopmentReleaseManifest -checkProductionDebugAarMetadata -checkProductionDebugAndroidTestAarMetadata -checkProductionDebugAndroidTestDuplicateClasses -checkProductionDebugDuplicateClasses -checkProductionDebugManifest -checkProductionProfileAarMetadata -checkProductionProfileDuplicateClasses -checkProductionProfileManifest -checkProductionReleaseAarMetadata -checkProductionReleaseDuplicateClasses -checkProductionReleaseManifest -checkStagingDebugAarMetadata -checkStagingDebugAndroidTestAarMetadata -checkStagingDebugAndroidTestDuplicateClasses -checkStagingDebugDuplicateClasses -checkStagingDebugManifest -checkStagingProfileAarMetadata -checkStagingProfileDuplicateClasses -checkStagingProfileManifest -checkStagingReleaseAarMetadata -checkStagingReleaseDuplicateClasses -checkStagingReleaseManifest -collectDevelopmentReleaseDependencies -collectProductionReleaseDependencies -collectStagingReleaseDependencies -compileDevelopmentDebugAidl -compileDevelopmentDebugAndroidTestAidl -compileDevelopmentDebugAndroidTestJavaWithJavac -compileDevelopmentDebugAndroidTestKotlin - Compiles the developmentDebugAndroidTest kotlin. -compileDevelopmentDebugAndroidTestRenderscript -compileDevelopmentDebugAndroidTestShaders -compileDevelopmentDebugArtProfile -compileDevelopmentDebugJavaWithJavac -compileDevelopmentDebugKotlin - Compiles the developmentDebug kotlin. -compileDevelopmentDebugRenderscript -compileDevelopmentDebugShaders -compileDevelopmentDebugUnitTestJavaWithJavac -compileDevelopmentDebugUnitTestKotlin - Compiles the developmentDebugUnitTest kotlin. -compileDevelopmentProfileAidl -compileDevelopmentProfileArtProfile -compileDevelopmentProfileJavaWithJavac -compileDevelopmentProfileKotlin - Compiles the developmentProfile kotlin. -compileDevelopmentProfileRenderscript -compileDevelopmentProfileShaders -compileDevelopmentProfileUnitTestJavaWithJavac -compileDevelopmentProfileUnitTestKotlin - Compiles the developmentProfileUnitTest kotlin. -compileDevelopmentReleaseAidl -compileDevelopmentReleaseArtProfile -compileDevelopmentReleaseJavaWithJavac -compileDevelopmentReleaseKotlin - Compiles the developmentRelease kotlin. -compileDevelopmentReleaseRenderscript -compileDevelopmentReleaseShaders -compileDevelopmentReleaseUnitTestJavaWithJavac -compileDevelopmentReleaseUnitTestKotlin - Compiles the developmentReleaseUnitTest kotlin. -compileFlutterBuildDevelopmentDebug -compileFlutterBuildDevelopmentProfile -compileFlutterBuildDevelopmentRelease -compileFlutterBuildProductionDebug -compileFlutterBuildProductionProfile -compileFlutterBuildProductionRelease -compileFlutterBuildStagingDebug -compileFlutterBuildStagingProfile -compileFlutterBuildStagingRelease +analyzeDevelopmentInternalDebugAndroidTestDependencies +analyzeDevelopmentInternalDebugDependencies +analyzeDevelopmentInternalDebugUnitTestDependencies +analyzeDevelopmentInternalProfileDependencies +analyzeDevelopmentInternalProfileUnitTestDependencies +analyzeDevelopmentInternalReleaseDependencies +analyzeDevelopmentInternalReleaseUnitTestDependencies +analyzeProductionInternalDebugAndroidTestDependencies +analyzeProductionInternalDebugDependencies +analyzeProductionInternalDebugUnitTestDependencies +analyzeProductionInternalProfileDependencies +analyzeProductionInternalProfileUnitTestDependencies +analyzeProductionInternalReleaseDependencies +analyzeProductionInternalReleaseUnitTestDependencies +analyzeStagingInternalDebugAndroidTestDependencies +analyzeStagingInternalDebugDependencies +analyzeStagingInternalDebugUnitTestDependencies +analyzeStagingInternalProfileDependencies +analyzeStagingInternalProfileUnitTestDependencies +analyzeStagingInternalReleaseDependencies +analyzeStagingInternalReleaseUnitTestDependencies +assembleDevelopmentInternalDebug - Assembles main output for variant developmentInternalDebug +assembleDevelopmentInternalDebugAndroidTest - Assembles main output for variant developmentInternalDebugAndroidTest +assembleDevelopmentInternalDebugUnitTest - Assembles main output for variant developmentInternalDebugUnitTest +assembleDevelopmentInternalProfile - Assembles main output for variant developmentInternalProfile +assembleDevelopmentInternalProfileUnitTest - Assembles main output for variant developmentInternalProfileUnitTest +assembleDevelopmentInternalRelease - Assembles main output for variant developmentInternalRelease +assembleDevelopmentInternalReleaseUnitTest - Assembles main output for variant developmentInternalReleaseUnitTest +assembleProductionInternalDebug - Assembles main output for variant productionInternalDebug +assembleProductionInternalDebugAndroidTest - Assembles main output for variant productionInternalDebugAndroidTest +assembleProductionInternalDebugUnitTest - Assembles main output for variant productionInternalDebugUnitTest +assembleProductionInternalProfile - Assembles main output for variant productionInternalProfile +assembleProductionInternalProfileUnitTest - Assembles main output for variant productionInternalProfileUnitTest +assembleProductionInternalRelease - Assembles main output for variant productionInternalRelease +assembleProductionInternalReleaseUnitTest - Assembles main output for variant productionInternalReleaseUnitTest +assembleStagingInternalDebug - Assembles main output for variant stagingInternalDebug +assembleStagingInternalDebugAndroidTest - Assembles main output for variant stagingInternalDebugAndroidTest +assembleStagingInternalDebugUnitTest - Assembles main output for variant stagingInternalDebugUnitTest +assembleStagingInternalProfile - Assembles main output for variant stagingInternalProfile +assembleStagingInternalProfileUnitTest - Assembles main output for variant stagingInternalProfileUnitTest +assembleStagingInternalRelease - Assembles main output for variant stagingInternalRelease +assembleStagingInternalReleaseUnitTest - Assembles main output for variant stagingInternalReleaseUnitTest +buildDevelopmentInternalDebugPreBundle +buildDevelopmentInternalProfilePreBundle +buildDevelopmentInternalReleasePreBundle +buildProductionInternalDebugPreBundle +buildProductionInternalProfilePreBundle +buildProductionInternalReleasePreBundle +buildStagingInternalDebugPreBundle +buildStagingInternalProfilePreBundle +buildStagingInternalReleasePreBundle +bundleDevelopmentInternalDebug - Assembles bundle for variant developmentInternalDebug +bundleDevelopmentInternalDebugAndroidTestClassesToCompileJar +bundleDevelopmentInternalDebugAndroidTestClassesToRuntimeJar +bundleDevelopmentInternalDebugClassesToCompileJar +bundleDevelopmentInternalDebugClassesToRuntimeJar +bundleDevelopmentInternalDebugResources +bundleDevelopmentInternalDebugUnitTestClassesToCompileJar +bundleDevelopmentInternalDebugUnitTestClassesToRuntimeJar +bundleDevelopmentInternalProfile - Assembles bundle for variant developmentInternalProfile +bundleDevelopmentInternalProfileClassesToCompileJar +bundleDevelopmentInternalProfileClassesToRuntimeJar +bundleDevelopmentInternalProfileResources +bundleDevelopmentInternalProfileUnitTestClassesToCompileJar +bundleDevelopmentInternalProfileUnitTestClassesToRuntimeJar +bundleDevelopmentInternalRelease - Assembles bundle for variant developmentInternalRelease +bundleDevelopmentInternalReleaseClassesToCompileJar +bundleDevelopmentInternalReleaseClassesToRuntimeJar +bundleDevelopmentInternalReleaseResources +bundleDevelopmentInternalReleaseUnitTestClassesToCompileJar +bundleDevelopmentInternalReleaseUnitTestClassesToRuntimeJar +bundleProductionInternalDebug - Assembles bundle for variant productionInternalDebug +bundleProductionInternalDebugAndroidTestClassesToCompileJar +bundleProductionInternalDebugAndroidTestClassesToRuntimeJar +bundleProductionInternalDebugClassesToCompileJar +bundleProductionInternalDebugClassesToRuntimeJar +bundleProductionInternalDebugResources +bundleProductionInternalDebugUnitTestClassesToCompileJar +bundleProductionInternalDebugUnitTestClassesToRuntimeJar +bundleProductionInternalProfile - Assembles bundle for variant productionInternalProfile +bundleProductionInternalProfileClassesToCompileJar +bundleProductionInternalProfileClassesToRuntimeJar +bundleProductionInternalProfileResources +bundleProductionInternalProfileUnitTestClassesToCompileJar +bundleProductionInternalProfileUnitTestClassesToRuntimeJar +bundleProductionInternalRelease - Assembles bundle for variant productionInternalRelease +bundleProductionInternalReleaseClassesToCompileJar +bundleProductionInternalReleaseClassesToRuntimeJar +bundleProductionInternalReleaseResources +bundleProductionInternalReleaseUnitTestClassesToCompileJar +bundleProductionInternalReleaseUnitTestClassesToRuntimeJar +bundleStagingInternalDebug - Assembles bundle for variant stagingInternalDebug +bundleStagingInternalDebugAndroidTestClassesToCompileJar +bundleStagingInternalDebugAndroidTestClassesToRuntimeJar +bundleStagingInternalDebugClassesToCompileJar +bundleStagingInternalDebugClassesToRuntimeJar +bundleStagingInternalDebugResources +bundleStagingInternalDebugUnitTestClassesToCompileJar +bundleStagingInternalDebugUnitTestClassesToRuntimeJar +bundleStagingInternalProfile - Assembles bundle for variant stagingInternalProfile +bundleStagingInternalProfileClassesToCompileJar +bundleStagingInternalProfileClassesToRuntimeJar +bundleStagingInternalProfileResources +bundleStagingInternalProfileUnitTestClassesToCompileJar +bundleStagingInternalProfileUnitTestClassesToRuntimeJar +bundleStagingInternalRelease - Assembles bundle for variant stagingInternalRelease +bundleStagingInternalReleaseClassesToCompileJar +bundleStagingInternalReleaseClassesToRuntimeJar +bundleStagingInternalReleaseResources +bundleStagingInternalReleaseUnitTestClassesToCompileJar +bundleStagingInternalReleaseUnitTestClassesToRuntimeJar +checkDevelopmentInternalDebugAarMetadata +checkDevelopmentInternalDebugAndroidTestAarMetadata +checkDevelopmentInternalDebugAndroidTestDuplicateClasses +checkDevelopmentInternalDebugDuplicateClasses +checkDevelopmentInternalDebugManifest +checkDevelopmentInternalProfileAarMetadata +checkDevelopmentInternalProfileDuplicateClasses +checkDevelopmentInternalProfileManifest +checkDevelopmentInternalReleaseAarMetadata +checkDevelopmentInternalReleaseDuplicateClasses +checkDevelopmentInternalReleaseManifest +checkProductionInternalDebugAarMetadata +checkProductionInternalDebugAndroidTestAarMetadata +checkProductionInternalDebugAndroidTestDuplicateClasses +checkProductionInternalDebugDuplicateClasses +checkProductionInternalDebugManifest +checkProductionInternalProfileAarMetadata +checkProductionInternalProfileDuplicateClasses +checkProductionInternalProfileManifest +checkProductionInternalReleaseAarMetadata +checkProductionInternalReleaseDuplicateClasses +checkProductionInternalReleaseManifest +checkStagingInternalDebugAarMetadata +checkStagingInternalDebugAndroidTestAarMetadata +checkStagingInternalDebugAndroidTestDuplicateClasses +checkStagingInternalDebugDuplicateClasses +checkStagingInternalDebugManifest +checkStagingInternalProfileAarMetadata +checkStagingInternalProfileDuplicateClasses +checkStagingInternalProfileManifest +checkStagingInternalReleaseAarMetadata +checkStagingInternalReleaseDuplicateClasses +checkStagingInternalReleaseManifest +collectDevelopmentInternalReleaseDependencies +collectProductionInternalReleaseDependencies +collectStagingInternalReleaseDependencies +compileDevelopmentInternalDebugAidl +compileDevelopmentInternalDebugAndroidTestAidl +compileDevelopmentInternalDebugAndroidTestJavaWithJavac +compileDevelopmentInternalDebugAndroidTestKotlin - Compiles the developmentInternalDebugAndroidTest kotlin. +compileDevelopmentInternalDebugAndroidTestRenderscript +compileDevelopmentInternalDebugAndroidTestShaders +compileDevelopmentInternalDebugArtProfile +compileDevelopmentInternalDebugJavaWithJavac +compileDevelopmentInternalDebugKotlin - Compiles the developmentInternalDebug kotlin. +compileDevelopmentInternalDebugRenderscript +compileDevelopmentInternalDebugShaders +compileDevelopmentInternalDebugUnitTestJavaWithJavac +compileDevelopmentInternalDebugUnitTestKotlin - Compiles the developmentInternalDebugUnitTest kotlin. +compileDevelopmentInternalProfileAidl +compileDevelopmentInternalProfileArtProfile +compileDevelopmentInternalProfileJavaWithJavac +compileDevelopmentInternalProfileKotlin - Compiles the developmentInternalProfile kotlin. +compileDevelopmentInternalProfileRenderscript +compileDevelopmentInternalProfileShaders +compileDevelopmentInternalProfileUnitTestJavaWithJavac +compileDevelopmentInternalProfileUnitTestKotlin - Compiles the developmentInternalProfileUnitTest kotlin. +compileDevelopmentInternalReleaseAidl +compileDevelopmentInternalReleaseArtProfile +compileDevelopmentInternalReleaseJavaWithJavac +compileDevelopmentInternalReleaseKotlin - Compiles the developmentInternalRelease kotlin. +compileDevelopmentInternalReleaseRenderscript +compileDevelopmentInternalReleaseShaders +compileDevelopmentInternalReleaseUnitTestJavaWithJavac +compileDevelopmentInternalReleaseUnitTestKotlin - Compiles the developmentInternalReleaseUnitTest kotlin. +compileFlutterBuildDevelopmentInternalDebug +compileFlutterBuildDevelopmentInternalProfile +compileFlutterBuildDevelopmentInternalRelease +compileFlutterBuildProductionInternalDebug +compileFlutterBuildProductionInternalProfile +compileFlutterBuildProductionInternalRelease +compileFlutterBuildStagingInternalDebug +compileFlutterBuildStagingInternalProfile +compileFlutterBuildStagingInternalRelease compileLint compileLintChecks -compileProductionDebugAidl -compileProductionDebugAndroidTestAidl -compileProductionDebugAndroidTestJavaWithJavac -compileProductionDebugAndroidTestKotlin - Compiles the productionDebugAndroidTest kotlin. -compileProductionDebugAndroidTestRenderscript -compileProductionDebugAndroidTestShaders -compileProductionDebugArtProfile -compileProductionDebugJavaWithJavac -compileProductionDebugKotlin - Compiles the productionDebug kotlin. -compileProductionDebugRenderscript -compileProductionDebugShaders -compileProductionDebugUnitTestJavaWithJavac -compileProductionDebugUnitTestKotlin - Compiles the productionDebugUnitTest kotlin. -compileProductionProfileAidl -compileProductionProfileArtProfile -compileProductionProfileJavaWithJavac -compileProductionProfileKotlin - Compiles the productionProfile kotlin. -compileProductionProfileRenderscript -compileProductionProfileShaders -compileProductionProfileUnitTestJavaWithJavac -compileProductionProfileUnitTestKotlin - Compiles the productionProfileUnitTest kotlin. -compileProductionReleaseAidl -compileProductionReleaseArtProfile -compileProductionReleaseJavaWithJavac -compileProductionReleaseKotlin - Compiles the productionRelease kotlin. -compileProductionReleaseRenderscript -compileProductionReleaseShaders -compileProductionReleaseUnitTestJavaWithJavac -compileProductionReleaseUnitTestKotlin - Compiles the productionReleaseUnitTest kotlin. -compileStagingDebugAidl -compileStagingDebugAndroidTestAidl -compileStagingDebugAndroidTestJavaWithJavac -compileStagingDebugAndroidTestKotlin - Compiles the stagingDebugAndroidTest kotlin. -compileStagingDebugAndroidTestRenderscript -compileStagingDebugAndroidTestShaders -compileStagingDebugArtProfile -compileStagingDebugJavaWithJavac -compileStagingDebugKotlin - Compiles the stagingDebug kotlin. -compileStagingDebugRenderscript -compileStagingDebugShaders -compileStagingDebugUnitTestJavaWithJavac -compileStagingDebugUnitTestKotlin - Compiles the stagingDebugUnitTest kotlin. -compileStagingProfileAidl -compileStagingProfileArtProfile -compileStagingProfileJavaWithJavac -compileStagingProfileKotlin - Compiles the stagingProfile kotlin. -compileStagingProfileRenderscript -compileStagingProfileShaders -compileStagingProfileUnitTestJavaWithJavac -compileStagingProfileUnitTestKotlin - Compiles the stagingProfileUnitTest kotlin. -compileStagingReleaseAidl -compileStagingReleaseArtProfile -compileStagingReleaseJavaWithJavac -compileStagingReleaseKotlin - Compiles the stagingRelease kotlin. -compileStagingReleaseRenderscript -compileStagingReleaseShaders -compileStagingReleaseUnitTestJavaWithJavac -compileStagingReleaseUnitTestKotlin - Compiles the stagingReleaseUnitTest kotlin. +compileProductionInternalDebugAidl +compileProductionInternalDebugAndroidTestAidl +compileProductionInternalDebugAndroidTestJavaWithJavac +compileProductionInternalDebugAndroidTestKotlin - Compiles the productionInternalDebugAndroidTest kotlin. +compileProductionInternalDebugAndroidTestRenderscript +compileProductionInternalDebugAndroidTestShaders +compileProductionInternalDebugArtProfile +compileProductionInternalDebugJavaWithJavac +compileProductionInternalDebugKotlin - Compiles the productionInternalDebug kotlin. +compileProductionInternalDebugRenderscript +compileProductionInternalDebugShaders +compileProductionInternalDebugUnitTestJavaWithJavac +compileProductionInternalDebugUnitTestKotlin - Compiles the productionInternalDebugUnitTest kotlin. +compileProductionInternalProfileAidl +compileProductionInternalProfileArtProfile +compileProductionInternalProfileJavaWithJavac +compileProductionInternalProfileKotlin - Compiles the productionInternalProfile kotlin. +compileProductionInternalProfileRenderscript +compileProductionInternalProfileShaders +compileProductionInternalProfileUnitTestJavaWithJavac +compileProductionInternalProfileUnitTestKotlin - Compiles the productionInternalProfileUnitTest kotlin. +compileProductionInternalReleaseAidl +compileProductionInternalReleaseArtProfile +compileProductionInternalReleaseJavaWithJavac +compileProductionInternalReleaseKotlin - Compiles the productionInternalRelease kotlin. +compileProductionInternalReleaseRenderscript +compileProductionInternalReleaseShaders +compileProductionInternalReleaseUnitTestJavaWithJavac +compileProductionInternalReleaseUnitTestKotlin - Compiles the productionInternalReleaseUnitTest kotlin. +compileStagingInternalDebugAidl +compileStagingInternalDebugAndroidTestAidl +compileStagingInternalDebugAndroidTestJavaWithJavac +compileStagingInternalDebugAndroidTestKotlin - Compiles the stagingInternalDebugAndroidTest kotlin. +compileStagingInternalDebugAndroidTestRenderscript +compileStagingInternalDebugAndroidTestShaders +compileStagingInternalDebugArtProfile +compileStagingInternalDebugJavaWithJavac +compileStagingInternalDebugKotlin - Compiles the stagingInternalDebug kotlin. +compileStagingInternalDebugRenderscript +compileStagingInternalDebugShaders +compileStagingInternalDebugUnitTestJavaWithJavac +compileStagingInternalDebugUnitTestKotlin - Compiles the stagingInternalDebugUnitTest kotlin. +compileStagingInternalProfileAidl +compileStagingInternalProfileArtProfile +compileStagingInternalProfileJavaWithJavac +compileStagingInternalProfileKotlin - Compiles the stagingInternalProfile kotlin. +compileStagingInternalProfileRenderscript +compileStagingInternalProfileShaders +compileStagingInternalProfileUnitTestJavaWithJavac +compileStagingInternalProfileUnitTestKotlin - Compiles the stagingInternalProfileUnitTest kotlin. +compileStagingInternalReleaseAidl +compileStagingInternalReleaseArtProfile +compileStagingInternalReleaseJavaWithJavac +compileStagingInternalReleaseKotlin - Compiles the stagingInternalRelease kotlin. +compileStagingInternalReleaseRenderscript +compileStagingInternalReleaseShaders +compileStagingInternalReleaseUnitTestJavaWithJavac +compileStagingInternalReleaseUnitTestKotlin - Compiles the stagingInternalReleaseUnitTest kotlin. components - Displays the components produced by project ':app'. [deprecated] -compressDevelopmentDebugAndroidTestAssets -compressDevelopmentDebugAssets -compressDevelopmentProfileAssets -compressDevelopmentReleaseAssets -compressProductionDebugAndroidTestAssets -compressProductionDebugAssets -compressProductionProfileAssets -compressProductionReleaseAssets -compressStagingDebugAndroidTestAssets -compressStagingDebugAssets -compressStagingProfileAssets -compressStagingReleaseAssets -configureDevelopmentReleaseDependencies -configureProductionReleaseDependencies -configureStagingReleaseDependencies +compressDevelopmentInternalDebugAndroidTestAssets +compressDevelopmentInternalDebugAssets +compressDevelopmentInternalProfileAssets +compressDevelopmentInternalReleaseAssets +compressProductionInternalDebugAndroidTestAssets +compressProductionInternalDebugAssets +compressProductionInternalProfileAssets +compressProductionInternalReleaseAssets +compressStagingInternalDebugAndroidTestAssets +compressStagingInternalDebugAssets +compressStagingInternalProfileAssets +compressStagingInternalReleaseAssets +configureDevelopmentInternalReleaseDependencies +configureProductionInternalReleaseDependencies +configureStagingInternalReleaseDependencies consumeConfigAttr -copyFlutterAssetsDevelopmentDebug -copyFlutterAssetsDevelopmentProfile -copyFlutterAssetsDevelopmentRelease -copyFlutterAssetsProductionDebug -copyFlutterAssetsProductionProfile -copyFlutterAssetsProductionRelease -copyFlutterAssetsStagingDebug -copyFlutterAssetsStagingProfile -copyFlutterAssetsStagingRelease -createDevelopmentDebugAndroidTestApkListingFileRedirect -createDevelopmentDebugApkListingFileRedirect -createDevelopmentDebugApksFromBundleListingFileRedirect -createDevelopmentDebugBundleListingFileRedirect -createDevelopmentDebugCompatibleScreenManifests -createDevelopmentDebugVariantModel -createDevelopmentProfileApkListingFileRedirect -createDevelopmentProfileApksFromBundleListingFileRedirect -createDevelopmentProfileBundleListingFileRedirect -createDevelopmentProfileCompatibleScreenManifests -createDevelopmentProfileVariantModel -createDevelopmentReleaseApkListingFileRedirect -createDevelopmentReleaseApksFromBundleListingFileRedirect -createDevelopmentReleaseBundleListingFileRedirect -createDevelopmentReleaseCompatibleScreenManifests -createDevelopmentReleaseVariantModel +copyFlutterAssetsDevelopmentInternalDebug +copyFlutterAssetsDevelopmentInternalProfile +copyFlutterAssetsDevelopmentInternalRelease +copyFlutterAssetsProductionInternalDebug +copyFlutterAssetsProductionInternalProfile +copyFlutterAssetsProductionInternalRelease +copyFlutterAssetsStagingInternalDebug +copyFlutterAssetsStagingInternalProfile +copyFlutterAssetsStagingInternalRelease +createDevelopmentInternalDebugAndroidTestApkListingFileRedirect +createDevelopmentInternalDebugApkListingFileRedirect +createDevelopmentInternalDebugApksFromBundleListingFileRedirect +createDevelopmentInternalDebugBundleListingFileRedirect +createDevelopmentInternalDebugCompatibleScreenManifests +createDevelopmentInternalDebugVariantModel +createDevelopmentInternalProfileApkListingFileRedirect +createDevelopmentInternalProfileApksFromBundleListingFileRedirect +createDevelopmentInternalProfileBundleListingFileRedirect +createDevelopmentInternalProfileCompatibleScreenManifests +createDevelopmentInternalProfileVariantModel +createDevelopmentInternalReleaseApkListingFileRedirect +createDevelopmentInternalReleaseApksFromBundleListingFileRedirect +createDevelopmentInternalReleaseBundleListingFileRedirect +createDevelopmentInternalReleaseCompatibleScreenManifests +createDevelopmentInternalReleaseVariantModel createMockableJar -createProductionDebugAndroidTestApkListingFileRedirect -createProductionDebugApkListingFileRedirect -createProductionDebugApksFromBundleListingFileRedirect -createProductionDebugBundleListingFileRedirect -createProductionDebugCompatibleScreenManifests -createProductionDebugVariantModel -createProductionProfileApkListingFileRedirect -createProductionProfileApksFromBundleListingFileRedirect -createProductionProfileBundleListingFileRedirect -createProductionProfileCompatibleScreenManifests -createProductionProfileVariantModel -createProductionReleaseApkListingFileRedirect -createProductionReleaseApksFromBundleListingFileRedirect -createProductionReleaseBundleListingFileRedirect -createProductionReleaseCompatibleScreenManifests -createProductionReleaseVariantModel -createStagingDebugAndroidTestApkListingFileRedirect -createStagingDebugApkListingFileRedirect -createStagingDebugApksFromBundleListingFileRedirect -createStagingDebugBundleListingFileRedirect -createStagingDebugCompatibleScreenManifests -createStagingDebugVariantModel -createStagingProfileApkListingFileRedirect -createStagingProfileApksFromBundleListingFileRedirect -createStagingProfileBundleListingFileRedirect -createStagingProfileCompatibleScreenManifests -createStagingProfileVariantModel -createStagingReleaseApkListingFileRedirect -createStagingReleaseApksFromBundleListingFileRedirect -createStagingReleaseBundleListingFileRedirect -createStagingReleaseCompatibleScreenManifests -createStagingReleaseVariantModel +createProductionInternalDebugAndroidTestApkListingFileRedirect +createProductionInternalDebugApkListingFileRedirect +createProductionInternalDebugApksFromBundleListingFileRedirect +createProductionInternalDebugBundleListingFileRedirect +createProductionInternalDebugCompatibleScreenManifests +createProductionInternalDebugVariantModel +createProductionInternalProfileApkListingFileRedirect +createProductionInternalProfileApksFromBundleListingFileRedirect +createProductionInternalProfileBundleListingFileRedirect +createProductionInternalProfileCompatibleScreenManifests +createProductionInternalProfileVariantModel +createProductionInternalReleaseApkListingFileRedirect +createProductionInternalReleaseApksFromBundleListingFileRedirect +createProductionInternalReleaseBundleListingFileRedirect +createProductionInternalReleaseCompatibleScreenManifests +createProductionInternalReleaseVariantModel +createStagingInternalDebugAndroidTestApkListingFileRedirect +createStagingInternalDebugApkListingFileRedirect +createStagingInternalDebugApksFromBundleListingFileRedirect +createStagingInternalDebugBundleListingFileRedirect +createStagingInternalDebugCompatibleScreenManifests +createStagingInternalDebugVariantModel +createStagingInternalProfileApkListingFileRedirect +createStagingInternalProfileApksFromBundleListingFileRedirect +createStagingInternalProfileBundleListingFileRedirect +createStagingInternalProfileCompatibleScreenManifests +createStagingInternalProfileVariantModel +createStagingInternalReleaseApkListingFileRedirect +createStagingInternalReleaseApksFromBundleListingFileRedirect +createStagingInternalReleaseBundleListingFileRedirect +createStagingInternalReleaseCompatibleScreenManifests +createStagingInternalReleaseVariantModel dependentComponents - Displays the dependent components of components in project ':app'. [deprecated] -desugarDevelopmentDebugAndroidTestFileDependencies -desugarDevelopmentDebugFileDependencies -desugarDevelopmentProfileFileDependencies -desugarProductionDebugAndroidTestFileDependencies -desugarProductionDebugFileDependencies -desugarProductionProfileFileDependencies -desugarStagingDebugAndroidTestFileDependencies -desugarStagingDebugFileDependencies -desugarStagingProfileFileDependencies -dexBuilderDevelopmentDebug -dexBuilderDevelopmentDebugAndroidTest -dexBuilderDevelopmentProfile -dexBuilderProductionDebug -dexBuilderProductionDebugAndroidTest -dexBuilderProductionProfile -dexBuilderStagingDebug -dexBuilderStagingDebugAndroidTest -dexBuilderStagingProfile -extractApksForDevelopmentDebug -extractApksForDevelopmentProfile -extractApksForDevelopmentRelease -extractApksForProductionDebug -extractApksForProductionProfile -extractApksForProductionRelease -extractApksForStagingDebug -extractApksForStagingProfile -extractApksForStagingRelease -extractApksFromBundleForDevelopmentDebug -extractApksFromBundleForDevelopmentProfile -extractApksFromBundleForDevelopmentRelease -extractApksFromBundleForProductionDebug -extractApksFromBundleForProductionProfile -extractApksFromBundleForProductionRelease -extractApksFromBundleForStagingDebug -extractApksFromBundleForStagingProfile -extractApksFromBundleForStagingRelease -extractDeepLinksDevelopmentDebug -extractDeepLinksDevelopmentProfile -extractDeepLinksDevelopmentRelease -extractDeepLinksProductionDebug -extractDeepLinksProductionProfile -extractDeepLinksProductionRelease -extractDeepLinksStagingDebug -extractDeepLinksStagingProfile -extractDeepLinksStagingRelease -extractDevelopmentDebugNativeDebugMetadata -extractDevelopmentDebugNativeSymbolTables -extractDevelopmentProfileNativeDebugMetadata -extractDevelopmentProfileNativeSymbolTables -extractDevelopmentReleaseNativeDebugMetadata -extractDevelopmentReleaseNativeSymbolTables -extractProductionDebugNativeDebugMetadata -extractProductionDebugNativeSymbolTables -extractProductionProfileNativeDebugMetadata -extractProductionProfileNativeSymbolTables -extractProductionReleaseNativeDebugMetadata -extractProductionReleaseNativeSymbolTables +desugarDevelopmentInternalDebugAndroidTestFileDependencies +desugarDevelopmentInternalDebugFileDependencies +desugarDevelopmentInternalProfileFileDependencies +desugarProductionInternalDebugAndroidTestFileDependencies +desugarProductionInternalDebugFileDependencies +desugarProductionInternalProfileFileDependencies +desugarStagingInternalDebugAndroidTestFileDependencies +desugarStagingInternalDebugFileDependencies +desugarStagingInternalProfileFileDependencies +dexBuilderDevelopmentInternalDebug +dexBuilderDevelopmentInternalDebugAndroidTest +dexBuilderDevelopmentInternalProfile +dexBuilderProductionInternalDebug +dexBuilderProductionInternalDebugAndroidTest +dexBuilderProductionInternalProfile +dexBuilderStagingInternalDebug +dexBuilderStagingInternalDebugAndroidTest +dexBuilderStagingInternalProfile +extractApksForDevelopmentInternalDebug +extractApksForDevelopmentInternalProfile +extractApksForDevelopmentInternalRelease +extractApksForProductionInternalDebug +extractApksForProductionInternalProfile +extractApksForProductionInternalRelease +extractApksForStagingInternalDebug +extractApksForStagingInternalProfile +extractApksForStagingInternalRelease +extractApksFromBundleForDevelopmentInternalDebug +extractApksFromBundleForDevelopmentInternalProfile +extractApksFromBundleForDevelopmentInternalRelease +extractApksFromBundleForProductionInternalDebug +extractApksFromBundleForProductionInternalProfile +extractApksFromBundleForProductionInternalRelease +extractApksFromBundleForStagingInternalDebug +extractApksFromBundleForStagingInternalProfile +extractApksFromBundleForStagingInternalRelease +extractDeepLinksDevelopmentInternalDebug +extractDeepLinksDevelopmentInternalProfile +extractDeepLinksDevelopmentInternalRelease +extractDeepLinksProductionInternalDebug +extractDeepLinksProductionInternalProfile +extractDeepLinksProductionInternalRelease +extractDeepLinksStagingInternalDebug +extractDeepLinksStagingInternalProfile +extractDeepLinksStagingInternalRelease +extractDevelopmentInternalDebugNativeDebugMetadata +extractDevelopmentInternalDebugNativeSymbolTables +extractDevelopmentInternalProfileNativeDebugMetadata +extractDevelopmentInternalProfileNativeSymbolTables +extractDevelopmentInternalReleaseNativeDebugMetadata +extractDevelopmentInternalReleaseNativeSymbolTables +extractProductionInternalDebugNativeDebugMetadata +extractProductionInternalDebugNativeSymbolTables +extractProductionInternalProfileNativeDebugMetadata +extractProductionInternalProfileNativeSymbolTables +extractProductionInternalReleaseNativeDebugMetadata +extractProductionInternalReleaseNativeSymbolTables extractProguardFiles -extractStagingDebugNativeDebugMetadata -extractStagingDebugNativeSymbolTables -extractStagingProfileNativeDebugMetadata -extractStagingProfileNativeSymbolTables -extractStagingReleaseNativeDebugMetadata -extractStagingReleaseNativeSymbolTables -generateDevelopmentDebugAndroidTestAssets -generateDevelopmentDebugAndroidTestBuildConfig -generateDevelopmentDebugAndroidTestResources -generateDevelopmentDebugAndroidTestResValues -generateDevelopmentDebugAndroidTestSources -generateDevelopmentDebugAssets -generateDevelopmentDebugBuildConfig -generateDevelopmentDebugFeatureMetadata -generateDevelopmentDebugFeatureTransitiveDeps -generateDevelopmentDebugLintModel -generateDevelopmentDebugManifestClass -generateDevelopmentDebugResources -generateDevelopmentDebugResValues -generateDevelopmentDebugSources -generateDevelopmentDebugUnitTestAssets -generateDevelopmentDebugUnitTestResources -generateDevelopmentDebugUnitTestSources -generateDevelopmentProfileAssets -generateDevelopmentProfileBuildConfig -generateDevelopmentProfileFeatureMetadata -generateDevelopmentProfileFeatureTransitiveDeps -generateDevelopmentProfileLintModel -generateDevelopmentProfileManifestClass -generateDevelopmentProfileResources -generateDevelopmentProfileResValues -generateDevelopmentProfileSources -generateDevelopmentProfileUnitTestAssets -generateDevelopmentProfileUnitTestResources -generateDevelopmentProfileUnitTestSources -generateDevelopmentReleaseAssets -generateDevelopmentReleaseBuildConfig -generateDevelopmentReleaseFeatureMetadata -generateDevelopmentReleaseFeatureTransitiveDeps -generateDevelopmentReleaseLintModel -generateDevelopmentReleaseManifestClass -generateDevelopmentReleaseResources -generateDevelopmentReleaseResValues -generateDevelopmentReleaseSources -generateDevelopmentReleaseUnitTestAssets -generateDevelopmentReleaseUnitTestResources -generateDevelopmentReleaseUnitTestSources -generateProductionDebugAndroidTestAssets -generateProductionDebugAndroidTestBuildConfig -generateProductionDebugAndroidTestResources -generateProductionDebugAndroidTestResValues -generateProductionDebugAndroidTestSources -generateProductionDebugAssets -generateProductionDebugBuildConfig -generateProductionDebugFeatureMetadata -generateProductionDebugFeatureTransitiveDeps -generateProductionDebugLintModel -generateProductionDebugManifestClass -generateProductionDebugResources -generateProductionDebugResValues -generateProductionDebugSources -generateProductionDebugUnitTestAssets -generateProductionDebugUnitTestResources -generateProductionDebugUnitTestSources -generateProductionProfileAssets -generateProductionProfileBuildConfig -generateProductionProfileFeatureMetadata -generateProductionProfileFeatureTransitiveDeps -generateProductionProfileLintModel -generateProductionProfileManifestClass -generateProductionProfileResources -generateProductionProfileResValues -generateProductionProfileSources -generateProductionProfileUnitTestAssets -generateProductionProfileUnitTestResources -generateProductionProfileUnitTestSources -generateProductionReleaseAssets -generateProductionReleaseBuildConfig -generateProductionReleaseFeatureMetadata -generateProductionReleaseFeatureTransitiveDeps -generateProductionReleaseLintModel -generateProductionReleaseManifestClass -generateProductionReleaseResources -generateProductionReleaseResValues -generateProductionReleaseSources -generateProductionReleaseUnitTestAssets -generateProductionReleaseUnitTestResources -generateProductionReleaseUnitTestSources -generateStagingDebugAndroidTestAssets -generateStagingDebugAndroidTestBuildConfig -generateStagingDebugAndroidTestResources -generateStagingDebugAndroidTestResValues -generateStagingDebugAndroidTestSources -generateStagingDebugAssets -generateStagingDebugBuildConfig -generateStagingDebugFeatureMetadata -generateStagingDebugFeatureTransitiveDeps -generateStagingDebugLintModel -generateStagingDebugManifestClass -generateStagingDebugResources -generateStagingDebugResValues -generateStagingDebugSources -generateStagingDebugUnitTestAssets -generateStagingDebugUnitTestResources -generateStagingDebugUnitTestSources -generateStagingProfileAssets -generateStagingProfileBuildConfig -generateStagingProfileFeatureMetadata -generateStagingProfileFeatureTransitiveDeps -generateStagingProfileLintModel -generateStagingProfileManifestClass -generateStagingProfileResources -generateStagingProfileResValues -generateStagingProfileSources -generateStagingProfileUnitTestAssets -generateStagingProfileUnitTestResources -generateStagingProfileUnitTestSources -generateStagingReleaseAssets -generateStagingReleaseBuildConfig -generateStagingReleaseFeatureMetadata -generateStagingReleaseFeatureTransitiveDeps -generateStagingReleaseLintModel -generateStagingReleaseManifestClass -generateStagingReleaseResources -generateStagingReleaseResValues -generateStagingReleaseSources -generateStagingReleaseUnitTestAssets -generateStagingReleaseUnitTestResources -generateStagingReleaseUnitTestSources -javaPreCompileDevelopmentDebug -javaPreCompileDevelopmentDebugAndroidTest -javaPreCompileDevelopmentDebugUnitTest -javaPreCompileDevelopmentProfile -javaPreCompileDevelopmentProfileUnitTest -javaPreCompileDevelopmentRelease -javaPreCompileDevelopmentReleaseUnitTest -javaPreCompileProductionDebug -javaPreCompileProductionDebugAndroidTest -javaPreCompileProductionDebugUnitTest -javaPreCompileProductionProfile -javaPreCompileProductionProfileUnitTest -javaPreCompileProductionRelease -javaPreCompileProductionReleaseUnitTest -javaPreCompileStagingDebug -javaPreCompileStagingDebugAndroidTest -javaPreCompileStagingDebugUnitTest -javaPreCompileStagingProfile -javaPreCompileStagingProfileUnitTest -javaPreCompileStagingRelease -javaPreCompileStagingReleaseUnitTest -makeApkFromBundleForDevelopmentDebug -makeApkFromBundleForDevelopmentProfile -makeApkFromBundleForDevelopmentRelease -makeApkFromBundleForProductionDebug -makeApkFromBundleForProductionProfile -makeApkFromBundleForProductionRelease -makeApkFromBundleForStagingDebug -makeApkFromBundleForStagingProfile -makeApkFromBundleForStagingRelease -mapDevelopmentDebugAndroidTestSourceSetPaths -mapDevelopmentDebugSourceSetPaths -mapDevelopmentProfileSourceSetPaths -mapDevelopmentReleaseSourceSetPaths -mapProductionDebugAndroidTestSourceSetPaths -mapProductionDebugSourceSetPaths -mapProductionProfileSourceSetPaths -mapProductionReleaseSourceSetPaths -mapStagingDebugAndroidTestSourceSetPaths -mapStagingDebugSourceSetPaths -mapStagingProfileSourceSetPaths -mapStagingReleaseSourceSetPaths -mergeDevelopmentDebugAndroidTestAssets -mergeDevelopmentDebugAndroidTestGeneratedProguardFiles -mergeDevelopmentDebugAndroidTestJavaResource -mergeDevelopmentDebugAndroidTestJniLibFolders -mergeDevelopmentDebugAndroidTestNativeLibs -mergeDevelopmentDebugAndroidTestResources -mergeDevelopmentDebugAndroidTestShaders -mergeDevelopmentDebugArtProfile -mergeDevelopmentDebugAssets -mergeDevelopmentDebugGeneratedProguardFiles -mergeDevelopmentDebugJavaResource -mergeDevelopmentDebugJniLibFolders -mergeDevelopmentDebugNativeDebugMetadata -mergeDevelopmentDebugNativeLibs -mergeDevelopmentDebugResources -mergeDevelopmentDebugShaders -mergeDevelopmentProfileArtProfile -mergeDevelopmentProfileAssets -mergeDevelopmentProfileGeneratedProguardFiles -mergeDevelopmentProfileJavaResource -mergeDevelopmentProfileJniLibFolders -mergeDevelopmentProfileNativeDebugMetadata -mergeDevelopmentProfileNativeLibs -mergeDevelopmentProfileResources -mergeDevelopmentProfileShaders -mergeDevelopmentReleaseArtProfile -mergeDevelopmentReleaseAssets -mergeDevelopmentReleaseGeneratedProguardFiles -mergeDevelopmentReleaseJavaResource -mergeDevelopmentReleaseJniLibFolders -mergeDevelopmentReleaseNativeDebugMetadata -mergeDevelopmentReleaseNativeLibs -mergeDevelopmentReleaseResources -mergeDevelopmentReleaseShaders -mergeDexDevelopmentDebug -mergeDexDevelopmentDebugAndroidTest -mergeDexDevelopmentProfile -mergeDexProductionDebug -mergeDexProductionDebugAndroidTest -mergeDexProductionProfile -mergeDexStagingDebug -mergeDexStagingDebugAndroidTest -mergeDexStagingProfile -mergeExtDexDevelopmentDebug -mergeExtDexDevelopmentDebugAndroidTest -mergeExtDexDevelopmentProfile -mergeExtDexProductionDebug -mergeExtDexProductionDebugAndroidTest -mergeExtDexProductionProfile -mergeExtDexStagingDebug -mergeExtDexStagingDebugAndroidTest -mergeExtDexStagingProfile -mergeProductionDebugAndroidTestAssets -mergeProductionDebugAndroidTestGeneratedProguardFiles -mergeProductionDebugAndroidTestJavaResource -mergeProductionDebugAndroidTestJniLibFolders -mergeProductionDebugAndroidTestNativeLibs -mergeProductionDebugAndroidTestResources -mergeProductionDebugAndroidTestShaders -mergeProductionDebugArtProfile -mergeProductionDebugAssets -mergeProductionDebugGeneratedProguardFiles -mergeProductionDebugJavaResource -mergeProductionDebugJniLibFolders -mergeProductionDebugNativeDebugMetadata -mergeProductionDebugNativeLibs -mergeProductionDebugResources -mergeProductionDebugShaders -mergeProductionProfileArtProfile -mergeProductionProfileAssets -mergeProductionProfileGeneratedProguardFiles -mergeProductionProfileJavaResource -mergeProductionProfileJniLibFolders -mergeProductionProfileNativeDebugMetadata -mergeProductionProfileNativeLibs -mergeProductionProfileResources -mergeProductionProfileShaders -mergeProductionReleaseArtProfile -mergeProductionReleaseAssets -mergeProductionReleaseGeneratedProguardFiles -mergeProductionReleaseJavaResource -mergeProductionReleaseJniLibFolders -mergeProductionReleaseNativeDebugMetadata -mergeProductionReleaseNativeLibs -mergeProductionReleaseResources -mergeProductionReleaseShaders -mergeStagingDebugAndroidTestAssets -mergeStagingDebugAndroidTestGeneratedProguardFiles -mergeStagingDebugAndroidTestJavaResource -mergeStagingDebugAndroidTestJniLibFolders -mergeStagingDebugAndroidTestNativeLibs -mergeStagingDebugAndroidTestResources -mergeStagingDebugAndroidTestShaders -mergeStagingDebugArtProfile -mergeStagingDebugAssets -mergeStagingDebugGeneratedProguardFiles -mergeStagingDebugJavaResource -mergeStagingDebugJniLibFolders -mergeStagingDebugNativeDebugMetadata -mergeStagingDebugNativeLibs -mergeStagingDebugResources -mergeStagingDebugShaders -mergeStagingProfileArtProfile -mergeStagingProfileAssets -mergeStagingProfileGeneratedProguardFiles -mergeStagingProfileJavaResource -mergeStagingProfileJniLibFolders -mergeStagingProfileNativeDebugMetadata -mergeStagingProfileNativeLibs -mergeStagingProfileResources -mergeStagingProfileShaders -mergeStagingReleaseArtProfile -mergeStagingReleaseAssets -mergeStagingReleaseGeneratedProguardFiles -mergeStagingReleaseJavaResource -mergeStagingReleaseJniLibFolders -mergeStagingReleaseNativeDebugMetadata -mergeStagingReleaseNativeLibs -mergeStagingReleaseResources -mergeStagingReleaseShaders -minifyDevelopmentReleaseWithR8 -minifyProductionReleaseWithR8 -minifyStagingReleaseWithR8 +extractStagingInternalDebugNativeDebugMetadata +extractStagingInternalDebugNativeSymbolTables +extractStagingInternalProfileNativeDebugMetadata +extractStagingInternalProfileNativeSymbolTables +extractStagingInternalReleaseNativeDebugMetadata +extractStagingInternalReleaseNativeSymbolTables +generateDevelopmentInternalDebugAndroidTestAssets +generateDevelopmentInternalDebugAndroidTestBuildConfig +generateDevelopmentInternalDebugAndroidTestResources +generateDevelopmentInternalDebugAndroidTestResValues +generateDevelopmentInternalDebugAndroidTestSources +generateDevelopmentInternalDebugAssets +generateDevelopmentInternalDebugBuildConfig +generateDevelopmentInternalDebugFeatureMetadata +generateDevelopmentInternalDebugFeatureTransitiveDeps +generateDevelopmentInternalDebugLintModel +generateDevelopmentInternalDebugManifestClass +generateDevelopmentInternalDebugResources +generateDevelopmentInternalDebugResValues +generateDevelopmentInternalDebugSources +generateDevelopmentInternalDebugUnitTestAssets +generateDevelopmentInternalDebugUnitTestResources +generateDevelopmentInternalDebugUnitTestSources +generateDevelopmentInternalProfileAssets +generateDevelopmentInternalProfileBuildConfig +generateDevelopmentInternalProfileFeatureMetadata +generateDevelopmentInternalProfileFeatureTransitiveDeps +generateDevelopmentInternalProfileLintModel +generateDevelopmentInternalProfileManifestClass +generateDevelopmentInternalProfileResources +generateDevelopmentInternalProfileResValues +generateDevelopmentInternalProfileSources +generateDevelopmentInternalProfileUnitTestAssets +generateDevelopmentInternalProfileUnitTestResources +generateDevelopmentInternalProfileUnitTestSources +generateDevelopmentInternalReleaseAssets +generateDevelopmentInternalReleaseBuildConfig +generateDevelopmentInternalReleaseFeatureMetadata +generateDevelopmentInternalReleaseFeatureTransitiveDeps +generateDevelopmentInternalReleaseLintModel +generateDevelopmentInternalReleaseManifestClass +generateDevelopmentInternalReleaseResources +generateDevelopmentInternalReleaseResValues +generateDevelopmentInternalReleaseSources +generateDevelopmentInternalReleaseUnitTestAssets +generateDevelopmentInternalReleaseUnitTestResources +generateDevelopmentInternalReleaseUnitTestSources +generateProductionInternalDebugAndroidTestAssets +generateProductionInternalDebugAndroidTestBuildConfig +generateProductionInternalDebugAndroidTestResources +generateProductionInternalDebugAndroidTestResValues +generateProductionInternalDebugAndroidTestSources +generateProductionInternalDebugAssets +generateProductionInternalDebugBuildConfig +generateProductionInternalDebugFeatureMetadata +generateProductionInternalDebugFeatureTransitiveDeps +generateProductionInternalDebugLintModel +generateProductionInternalDebugManifestClass +generateProductionInternalDebugResources +generateProductionInternalDebugResValues +generateProductionInternalDebugSources +generateProductionInternalDebugUnitTestAssets +generateProductionInternalDebugUnitTestResources +generateProductionInternalDebugUnitTestSources +generateProductionInternalProfileAssets +generateProductionInternalProfileBuildConfig +generateProductionInternalProfileFeatureMetadata +generateProductionInternalProfileFeatureTransitiveDeps +generateProductionInternalProfileLintModel +generateProductionInternalProfileManifestClass +generateProductionInternalProfileResources +generateProductionInternalProfileResValues +generateProductionInternalProfileSources +generateProductionInternalProfileUnitTestAssets +generateProductionInternalProfileUnitTestResources +generateProductionInternalProfileUnitTestSources +generateProductionInternalReleaseAssets +generateProductionInternalReleaseBuildConfig +generateProductionInternalReleaseFeatureMetadata +generateProductionInternalReleaseFeatureTransitiveDeps +generateProductionInternalReleaseLintModel +generateProductionInternalReleaseManifestClass +generateProductionInternalReleaseResources +generateProductionInternalReleaseResValues +generateProductionInternalReleaseSources +generateProductionInternalReleaseUnitTestAssets +generateProductionInternalReleaseUnitTestResources +generateProductionInternalReleaseUnitTestSources +generateStagingInternalDebugAndroidTestAssets +generateStagingInternalDebugAndroidTestBuildConfig +generateStagingInternalDebugAndroidTestResources +generateStagingInternalDebugAndroidTestResValues +generateStagingInternalDebugAndroidTestSources +generateStagingInternalDebugAssets +generateStagingInternalDebugBuildConfig +generateStagingInternalDebugFeatureMetadata +generateStagingInternalDebugFeatureTransitiveDeps +generateStagingInternalDebugLintModel +generateStagingInternalDebugManifestClass +generateStagingInternalDebugResources +generateStagingInternalDebugResValues +generateStagingInternalDebugSources +generateStagingInternalDebugUnitTestAssets +generateStagingInternalDebugUnitTestResources +generateStagingInternalDebugUnitTestSources +generateStagingInternalProfileAssets +generateStagingInternalProfileBuildConfig +generateStagingInternalProfileFeatureMetadata +generateStagingInternalProfileFeatureTransitiveDeps +generateStagingInternalProfileLintModel +generateStagingInternalProfileManifestClass +generateStagingInternalProfileResources +generateStagingInternalProfileResValues +generateStagingInternalProfileSources +generateStagingInternalProfileUnitTestAssets +generateStagingInternalProfileUnitTestResources +generateStagingInternalProfileUnitTestSources +generateStagingInternalReleaseAssets +generateStagingInternalReleaseBuildConfig +generateStagingInternalReleaseFeatureMetadata +generateStagingInternalReleaseFeatureTransitiveDeps +generateStagingInternalReleaseLintModel +generateStagingInternalReleaseManifestClass +generateStagingInternalReleaseResources +generateStagingInternalReleaseResValues +generateStagingInternalReleaseSources +generateStagingInternalReleaseUnitTestAssets +generateStagingInternalReleaseUnitTestResources +generateStagingInternalReleaseUnitTestSources +javaPreCompileDevelopmentInternalDebug +javaPreCompileDevelopmentInternalDebugAndroidTest +javaPreCompileDevelopmentInternalDebugUnitTest +javaPreCompileDevelopmentInternalProfile +javaPreCompileDevelopmentInternalProfileUnitTest +javaPreCompileDevelopmentInternalRelease +javaPreCompileDevelopmentInternalReleaseUnitTest +javaPreCompileProductionInternalDebug +javaPreCompileProductionInternalDebugAndroidTest +javaPreCompileProductionInternalDebugUnitTest +javaPreCompileProductionInternalProfile +javaPreCompileProductionInternalProfileUnitTest +javaPreCompileProductionInternalRelease +javaPreCompileProductionInternalReleaseUnitTest +javaPreCompileStagingInternalDebug +javaPreCompileStagingInternalDebugAndroidTest +javaPreCompileStagingInternalDebugUnitTest +javaPreCompileStagingInternalProfile +javaPreCompileStagingInternalProfileUnitTest +javaPreCompileStagingInternalRelease +javaPreCompileStagingInternalReleaseUnitTest +makeApkFromBundleForDevelopmentInternalDebug +makeApkFromBundleForDevelopmentInternalProfile +makeApkFromBundleForDevelopmentInternalRelease +makeApkFromBundleForProductionInternalDebug +makeApkFromBundleForProductionInternalProfile +makeApkFromBundleForProductionInternalRelease +makeApkFromBundleForStagingInternalDebug +makeApkFromBundleForStagingInternalProfile +makeApkFromBundleForStagingInternalRelease +mapDevelopmentInternalDebugAndroidTestSourceSetPaths +mapDevelopmentInternalDebugSourceSetPaths +mapDevelopmentInternalProfileSourceSetPaths +mapDevelopmentInternalReleaseSourceSetPaths +mapProductionInternalDebugAndroidTestSourceSetPaths +mapProductionInternalDebugSourceSetPaths +mapProductionInternalProfileSourceSetPaths +mapProductionInternalReleaseSourceSetPaths +mapStagingInternalDebugAndroidTestSourceSetPaths +mapStagingInternalDebugSourceSetPaths +mapStagingInternalProfileSourceSetPaths +mapStagingInternalReleaseSourceSetPaths +mergeDevelopmentInternalDebugAndroidTestAssets +mergeDevelopmentInternalDebugAndroidTestGeneratedProguardFiles +mergeDevelopmentInternalDebugAndroidTestJavaResource +mergeDevelopmentInternalDebugAndroidTestJniLibFolders +mergeDevelopmentInternalDebugAndroidTestNativeLibs +mergeDevelopmentInternalDebugAndroidTestResources +mergeDevelopmentInternalDebugAndroidTestShaders +mergeDevelopmentInternalDebugArtProfile +mergeDevelopmentInternalDebugAssets +mergeDevelopmentInternalDebugGeneratedProguardFiles +mergeDevelopmentInternalDebugJavaResource +mergeDevelopmentInternalDebugJniLibFolders +mergeDevelopmentInternalDebugNativeDebugMetadata +mergeDevelopmentInternalDebugNativeLibs +mergeDevelopmentInternalDebugResources +mergeDevelopmentInternalDebugShaders +mergeDevelopmentInternalProfileArtProfile +mergeDevelopmentInternalProfileAssets +mergeDevelopmentInternalProfileGeneratedProguardFiles +mergeDevelopmentInternalProfileJavaResource +mergeDevelopmentInternalProfileJniLibFolders +mergeDevelopmentInternalProfileNativeDebugMetadata +mergeDevelopmentInternalProfileNativeLibs +mergeDevelopmentInternalProfileResources +mergeDevelopmentInternalProfileShaders +mergeDevelopmentInternalReleaseArtProfile +mergeDevelopmentInternalReleaseAssets +mergeDevelopmentInternalReleaseGeneratedProguardFiles +mergeDevelopmentInternalReleaseJavaResource +mergeDevelopmentInternalReleaseJniLibFolders +mergeDevelopmentInternalReleaseNativeDebugMetadata +mergeDevelopmentInternalReleaseNativeLibs +mergeDevelopmentInternalReleaseResources +mergeDevelopmentInternalReleaseShaders +mergeDexDevelopmentInternalDebug +mergeDexDevelopmentInternalDebugAndroidTest +mergeDexDevelopmentInternalProfile +mergeDexProductionInternalDebug +mergeDexProductionInternalDebugAndroidTest +mergeDexProductionInternalProfile +mergeDexStagingInternalDebug +mergeDexStagingInternalDebugAndroidTest +mergeDexStagingInternalProfile +mergeExtDexDevelopmentInternalDebug +mergeExtDexDevelopmentInternalDebugAndroidTest +mergeExtDexDevelopmentInternalProfile +mergeExtDexProductionInternalDebug +mergeExtDexProductionInternalDebugAndroidTest +mergeExtDexProductionInternalProfile +mergeExtDexStagingInternalDebug +mergeExtDexStagingInternalDebugAndroidTest +mergeExtDexStagingInternalProfile +mergeProductionInternalDebugAndroidTestAssets +mergeProductionInternalDebugAndroidTestGeneratedProguardFiles +mergeProductionInternalDebugAndroidTestJavaResource +mergeProductionInternalDebugAndroidTestJniLibFolders +mergeProductionInternalDebugAndroidTestNativeLibs +mergeProductionInternalDebugAndroidTestResources +mergeProductionInternalDebugAndroidTestShaders +mergeProductionInternalDebugArtProfile +mergeProductionInternalDebugAssets +mergeProductionInternalDebugGeneratedProguardFiles +mergeProductionInternalDebugJavaResource +mergeProductionInternalDebugJniLibFolders +mergeProductionInternalDebugNativeDebugMetadata +mergeProductionInternalDebugNativeLibs +mergeProductionInternalDebugResources +mergeProductionInternalDebugShaders +mergeProductionInternalProfileArtProfile +mergeProductionInternalProfileAssets +mergeProductionInternalProfileGeneratedProguardFiles +mergeProductionInternalProfileJavaResource +mergeProductionInternalProfileJniLibFolders +mergeProductionInternalProfileNativeDebugMetadata +mergeProductionInternalProfileNativeLibs +mergeProductionInternalProfileResources +mergeProductionInternalProfileShaders +mergeProductionInternalReleaseArtProfile +mergeProductionInternalReleaseAssets +mergeProductionInternalReleaseGeneratedProguardFiles +mergeProductionInternalReleaseJavaResource +mergeProductionInternalReleaseJniLibFolders +mergeProductionInternalReleaseNativeDebugMetadata +mergeProductionInternalReleaseNativeLibs +mergeProductionInternalReleaseResources +mergeProductionInternalReleaseShaders +mergeStagingInternalDebugAndroidTestAssets +mergeStagingInternalDebugAndroidTestGeneratedProguardFiles +mergeStagingInternalDebugAndroidTestJavaResource +mergeStagingInternalDebugAndroidTestJniLibFolders +mergeStagingInternalDebugAndroidTestNativeLibs +mergeStagingInternalDebugAndroidTestResources +mergeStagingInternalDebugAndroidTestShaders +mergeStagingInternalDebugArtProfile +mergeStagingInternalDebugAssets +mergeStagingInternalDebugGeneratedProguardFiles +mergeStagingInternalDebugJavaResource +mergeStagingInternalDebugJniLibFolders +mergeStagingInternalDebugNativeDebugMetadata +mergeStagingInternalDebugNativeLibs +mergeStagingInternalDebugResources +mergeStagingInternalDebugShaders +mergeStagingInternalProfileArtProfile +mergeStagingInternalProfileAssets +mergeStagingInternalProfileGeneratedProguardFiles +mergeStagingInternalProfileJavaResource +mergeStagingInternalProfileJniLibFolders +mergeStagingInternalProfileNativeDebugMetadata +mergeStagingInternalProfileNativeLibs +mergeStagingInternalProfileResources +mergeStagingInternalProfileShaders +mergeStagingInternalReleaseArtProfile +mergeStagingInternalReleaseAssets +mergeStagingInternalReleaseGeneratedProguardFiles +mergeStagingInternalReleaseJavaResource +mergeStagingInternalReleaseJniLibFolders +mergeStagingInternalReleaseNativeDebugMetadata +mergeStagingInternalReleaseNativeLibs +mergeStagingInternalReleaseResources +mergeStagingInternalReleaseShaders +minifyDevelopmentInternalReleaseWithR8 +minifyProductionInternalReleaseWithR8 +minifyStagingInternalReleaseWithR8 model - Displays the configuration model of project ':app'. [deprecated] -optimizeDevelopmentReleaseResources -optimizeProductionReleaseResources -optimizeStagingReleaseResources -packageDevelopmentDebug -packageDevelopmentDebugAndroidTest -packageDevelopmentDebugBundle -packageDevelopmentDebugUniversalApk -packageDevelopmentProfile -packageDevelopmentProfileBundle -packageDevelopmentProfileUniversalApk -packageDevelopmentRelease -packageDevelopmentReleaseBundle -packageDevelopmentReleaseUniversalApk -packageProductionDebug -packageProductionDebugAndroidTest -packageProductionDebugBundle -packageProductionDebugUniversalApk -packageProductionProfile -packageProductionProfileBundle -packageProductionProfileUniversalApk -packageProductionRelease -packageProductionReleaseBundle -packageProductionReleaseUniversalApk -packageStagingDebug -packageStagingDebugAndroidTest -packageStagingDebugBundle -packageStagingDebugUniversalApk -packageStagingProfile -packageStagingProfileBundle -packageStagingProfileUniversalApk -packageStagingRelease -packageStagingReleaseBundle -packageStagingReleaseUniversalApk -packLibsflutterBuildDevelopmentDebug -packLibsflutterBuildDevelopmentProfile -packLibsflutterBuildDevelopmentRelease -packLibsflutterBuildProductionDebug -packLibsflutterBuildProductionProfile -packLibsflutterBuildProductionRelease -packLibsflutterBuildStagingDebug -packLibsflutterBuildStagingProfile -packLibsflutterBuildStagingRelease -parseDevelopmentDebugIntegrityConfig -parseDevelopmentProfileIntegrityConfig -parseDevelopmentReleaseIntegrityConfig -parseProductionDebugIntegrityConfig -parseProductionProfileIntegrityConfig -parseProductionReleaseIntegrityConfig -parseStagingDebugIntegrityConfig -parseStagingProfileIntegrityConfig -parseStagingReleaseIntegrityConfig +optimizeDevelopmentInternalReleaseResources +optimizeProductionInternalReleaseResources +optimizeStagingInternalReleaseResources +packageDevelopmentInternalDebug +packageDevelopmentInternalDebugAndroidTest +packageDevelopmentInternalDebugBundle +packageDevelopmentInternalDebugUniversalApk +packageDevelopmentInternalProfile +packageDevelopmentInternalProfileBundle +packageDevelopmentInternalProfileUniversalApk +packageDevelopmentInternalRelease +packageDevelopmentInternalReleaseBundle +packageDevelopmentInternalReleaseUniversalApk +packageProductionInternalDebug +packageProductionInternalDebugAndroidTest +packageProductionInternalDebugBundle +packageProductionInternalDebugUniversalApk +packageProductionInternalProfile +packageProductionInternalProfileBundle +packageProductionInternalProfileUniversalApk +packageProductionInternalRelease +packageProductionInternalReleaseBundle +packageProductionInternalReleaseUniversalApk +packageStagingInternalDebug +packageStagingInternalDebugAndroidTest +packageStagingInternalDebugBundle +packageStagingInternalDebugUniversalApk +packageStagingInternalProfile +packageStagingInternalProfileBundle +packageStagingInternalProfileUniversalApk +packageStagingInternalRelease +packageStagingInternalReleaseBundle +packageStagingInternalReleaseUniversalApk +packLibsflutterBuildDevelopmentInternalDebug +packLibsflutterBuildDevelopmentInternalProfile +packLibsflutterBuildDevelopmentInternalRelease +packLibsflutterBuildProductionInternalDebug +packLibsflutterBuildProductionInternalProfile +packLibsflutterBuildProductionInternalRelease +packLibsflutterBuildStagingInternalDebug +packLibsflutterBuildStagingInternalProfile +packLibsflutterBuildStagingInternalRelease +parseDevelopmentInternalDebugIntegrityConfig +parseDevelopmentInternalProfileIntegrityConfig +parseDevelopmentInternalReleaseIntegrityConfig +parseProductionInternalDebugIntegrityConfig +parseProductionInternalProfileIntegrityConfig +parseProductionInternalReleaseIntegrityConfig +parseStagingInternalDebugIntegrityConfig +parseStagingInternalProfileIntegrityConfig +parseStagingInternalReleaseIntegrityConfig preBuild -preDevelopmentDebugAndroidTestBuild -preDevelopmentDebugBuild -preDevelopmentDebugUnitTestBuild -preDevelopmentProfileBuild -preDevelopmentProfileUnitTestBuild -preDevelopmentReleaseBuild -preDevelopmentReleaseUnitTestBuild +preDevelopmentInternalDebugAndroidTestBuild +preDevelopmentInternalDebugBuild +preDevelopmentInternalDebugUnitTestBuild +preDevelopmentInternalProfileBuild +preDevelopmentInternalProfileUnitTestBuild +preDevelopmentInternalReleaseBuild +preDevelopmentInternalReleaseUnitTestBuild prepareLintJarForPublish -preProductionDebugAndroidTestBuild -preProductionDebugBuild -preProductionDebugUnitTestBuild -preProductionProfileBuild -preProductionProfileUnitTestBuild -preProductionReleaseBuild -preProductionReleaseUnitTestBuild -preStagingDebugAndroidTestBuild -preStagingDebugBuild -preStagingDebugUnitTestBuild -preStagingProfileBuild -preStagingProfileUnitTestBuild -preStagingReleaseBuild -preStagingReleaseUnitTestBuild -processApplicationManifestDevelopmentDebugForBundle -processApplicationManifestDevelopmentProfileForBundle -processApplicationManifestDevelopmentReleaseForBundle -processApplicationManifestProductionDebugForBundle -processApplicationManifestProductionProfileForBundle -processApplicationManifestProductionReleaseForBundle -processApplicationManifestStagingDebugForBundle -processApplicationManifestStagingProfileForBundle -processApplicationManifestStagingReleaseForBundle -processDevelopmentDebugAndroidTestJavaRes -processDevelopmentDebugAndroidTestManifest -processDevelopmentDebugAndroidTestResources -processDevelopmentDebugJavaRes -processDevelopmentDebugMainManifest -processDevelopmentDebugManifest -processDevelopmentDebugManifestForInstantApp -processDevelopmentDebugManifestForPackage -processDevelopmentDebugResources -processDevelopmentDebugUnitTestJavaRes -processDevelopmentProfileJavaRes -processDevelopmentProfileMainManifest -processDevelopmentProfileManifest -processDevelopmentProfileManifestForInstantApp -processDevelopmentProfileManifestForPackage -processDevelopmentProfileResources -processDevelopmentProfileUnitTestJavaRes -processDevelopmentReleaseJavaRes -processDevelopmentReleaseMainManifest -processDevelopmentReleaseManifest -processDevelopmentReleaseManifestForInstantApp -processDevelopmentReleaseManifestForPackage -processDevelopmentReleaseResources -processDevelopmentReleaseUnitTestJavaRes -processManifestDevelopmentDebugForFeature -processManifestDevelopmentProfileForFeature -processManifestDevelopmentReleaseForFeature -processManifestProductionDebugForFeature -processManifestProductionProfileForFeature -processManifestProductionReleaseForFeature -processManifestStagingDebugForFeature -processManifestStagingProfileForFeature -processManifestStagingReleaseForFeature -processProductionDebugAndroidTestJavaRes -processProductionDebugAndroidTestManifest -processProductionDebugAndroidTestResources -processProductionDebugJavaRes -processProductionDebugMainManifest -processProductionDebugManifest -processProductionDebugManifestForInstantApp -processProductionDebugManifestForPackage -processProductionDebugResources -processProductionDebugUnitTestJavaRes -processProductionProfileJavaRes -processProductionProfileMainManifest -processProductionProfileManifest -processProductionProfileManifestForInstantApp -processProductionProfileManifestForPackage -processProductionProfileResources -processProductionProfileUnitTestJavaRes -processProductionReleaseJavaRes -processProductionReleaseMainManifest -processProductionReleaseManifest -processProductionReleaseManifestForInstantApp -processProductionReleaseManifestForPackage -processProductionReleaseResources -processProductionReleaseUnitTestJavaRes -processStagingDebugAndroidTestJavaRes -processStagingDebugAndroidTestManifest -processStagingDebugAndroidTestResources -processStagingDebugJavaRes -processStagingDebugMainManifest -processStagingDebugManifest -processStagingDebugManifestForInstantApp -processStagingDebugManifestForPackage -processStagingDebugResources -processStagingDebugUnitTestJavaRes -processStagingProfileJavaRes -processStagingProfileMainManifest -processStagingProfileManifest -processStagingProfileManifestForInstantApp -processStagingProfileManifestForPackage -processStagingProfileResources -processStagingProfileUnitTestJavaRes -processStagingReleaseJavaRes -processStagingReleaseMainManifest -processStagingReleaseManifest -processStagingReleaseManifestForInstantApp -processStagingReleaseManifestForPackage -processStagingReleaseResources -processStagingReleaseUnitTestJavaRes -produceDevelopmentDebugBundleIdeListingFile -produceDevelopmentProfileBundleIdeListingFile -produceDevelopmentReleaseBundleIdeListingFile -produceProductionDebugBundleIdeListingFile -produceProductionProfileBundleIdeListingFile -produceProductionReleaseBundleIdeListingFile -produceStagingDebugBundleIdeListingFile -produceStagingProfileBundleIdeListingFile -produceStagingReleaseBundleIdeListingFile +preProductionInternalDebugAndroidTestBuild +preProductionInternalDebugBuild +preProductionInternalDebugUnitTestBuild +preProductionInternalProfileBuild +preProductionInternalProfileUnitTestBuild +preProductionInternalReleaseBuild +preProductionInternalReleaseUnitTestBuild +preStagingInternalDebugAndroidTestBuild +preStagingInternalDebugBuild +preStagingInternalDebugUnitTestBuild +preStagingInternalProfileBuild +preStagingInternalProfileUnitTestBuild +preStagingInternalReleaseBuild +preStagingInternalReleaseUnitTestBuild +processApplicationManifestDevelopmentInternalDebugForBundle +processApplicationManifestDevelopmentInternalProfileForBundle +processApplicationManifestDevelopmentInternalReleaseForBundle +processApplicationManifestProductionInternalDebugForBundle +processApplicationManifestProductionInternalProfileForBundle +processApplicationManifestProductionInternalReleaseForBundle +processApplicationManifestStagingInternalDebugForBundle +processApplicationManifestStagingInternalProfileForBundle +processApplicationManifestStagingInternalReleaseForBundle +processDevelopmentInternalDebugAndroidTestJavaRes +processDevelopmentInternalDebugAndroidTestManifest +processDevelopmentInternalDebugAndroidTestResources +processDevelopmentInternalDebugJavaRes +processDevelopmentInternalDebugMainManifest +processDevelopmentInternalDebugManifest +processDevelopmentInternalDebugManifestForInstantApp +processDevelopmentInternalDebugManifestForPackage +processDevelopmentInternalDebugResources +processDevelopmentInternalDebugUnitTestJavaRes +processDevelopmentInternalProfileJavaRes +processDevelopmentInternalProfileMainManifest +processDevelopmentInternalProfileManifest +processDevelopmentInternalProfileManifestForInstantApp +processDevelopmentInternalProfileManifestForPackage +processDevelopmentInternalProfileResources +processDevelopmentInternalProfileUnitTestJavaRes +processDevelopmentInternalReleaseJavaRes +processDevelopmentInternalReleaseMainManifest +processDevelopmentInternalReleaseManifest +processDevelopmentInternalReleaseManifestForInstantApp +processDevelopmentInternalReleaseManifestForPackage +processDevelopmentInternalReleaseResources +processDevelopmentInternalReleaseUnitTestJavaRes +processManifestDevelopmentInternalDebugForFeature +processManifestDevelopmentInternalProfileForFeature +processManifestDevelopmentInternalReleaseForFeature +processManifestProductionInternalDebugForFeature +processManifestProductionInternalProfileForFeature +processManifestProductionInternalReleaseForFeature +processManifestStagingInternalDebugForFeature +processManifestStagingInternalProfileForFeature +processManifestStagingInternalReleaseForFeature +processProductionInternalDebugAndroidTestJavaRes +processProductionInternalDebugAndroidTestManifest +processProductionInternalDebugAndroidTestResources +processProductionInternalDebugJavaRes +processProductionInternalDebugMainManifest +processProductionInternalDebugManifest +processProductionInternalDebugManifestForInstantApp +processProductionInternalDebugManifestForPackage +processProductionInternalDebugResources +processProductionInternalDebugUnitTestJavaRes +processProductionInternalProfileJavaRes +processProductionInternalProfileMainManifest +processProductionInternalProfileManifest +processProductionInternalProfileManifestForInstantApp +processProductionInternalProfileManifestForPackage +processProductionInternalProfileResources +processProductionInternalProfileUnitTestJavaRes +processProductionInternalReleaseJavaRes +processProductionInternalReleaseMainManifest +processProductionInternalReleaseManifest +processProductionInternalReleaseManifestForInstantApp +processProductionInternalReleaseManifestForPackage +processProductionInternalReleaseResources +processProductionInternalReleaseUnitTestJavaRes +processStagingInternalDebugAndroidTestJavaRes +processStagingInternalDebugAndroidTestManifest +processStagingInternalDebugAndroidTestResources +processStagingInternalDebugJavaRes +processStagingInternalDebugMainManifest +processStagingInternalDebugManifest +processStagingInternalDebugManifestForInstantApp +processStagingInternalDebugManifestForPackage +processStagingInternalDebugResources +processStagingInternalDebugUnitTestJavaRes +processStagingInternalProfileJavaRes +processStagingInternalProfileMainManifest +processStagingInternalProfileManifest +processStagingInternalProfileManifestForInstantApp +processStagingInternalProfileManifestForPackage +processStagingInternalProfileResources +processStagingInternalProfileUnitTestJavaRes +processStagingInternalReleaseJavaRes +processStagingInternalReleaseMainManifest +processStagingInternalReleaseManifest +processStagingInternalReleaseManifestForInstantApp +processStagingInternalReleaseManifestForPackage +processStagingInternalReleaseResources +processStagingInternalReleaseUnitTestJavaRes +produceDevelopmentInternalDebugBundleIdeListingFile +produceDevelopmentInternalProfileBundleIdeListingFile +produceDevelopmentInternalReleaseBundleIdeListingFile +produceProductionInternalDebugBundleIdeListingFile +produceProductionInternalProfileBundleIdeListingFile +produceProductionInternalReleaseBundleIdeListingFile +produceStagingInternalDebugBundleIdeListingFile +produceStagingInternalProfileBundleIdeListingFile +produceStagingInternalReleaseBundleIdeListingFile resolveConfigAttr -sdkDevelopmentReleaseDependencyData -sdkProductionReleaseDependencyData -sdkStagingReleaseDependencyData -shrinkBundleDevelopmentReleaseResources -shrinkBundleProductionReleaseResources -shrinkBundleStagingReleaseResources -shrinkDevelopmentReleaseRes -shrinkProductionReleaseRes -shrinkStagingReleaseRes -signDevelopmentDebugBundle -signDevelopmentProfileBundle -signDevelopmentReleaseBundle -signingConfigWriterDevelopmentDebug -signingConfigWriterDevelopmentDebugAndroidTest -signingConfigWriterDevelopmentProfile -signingConfigWriterDevelopmentRelease -signingConfigWriterProductionDebug -signingConfigWriterProductionDebugAndroidTest -signingConfigWriterProductionProfile -signingConfigWriterProductionRelease -signingConfigWriterStagingDebug -signingConfigWriterStagingDebugAndroidTest -signingConfigWriterStagingProfile -signingConfigWriterStagingRelease -signProductionDebugBundle -signProductionProfileBundle -signProductionReleaseBundle -signStagingDebugBundle -signStagingProfileBundle -signStagingReleaseBundle -stripDevelopmentDebugDebugSymbols -stripDevelopmentProfileDebugSymbols -stripDevelopmentReleaseDebugSymbols -stripProductionDebugDebugSymbols -stripProductionProfileDebugSymbols -stripProductionReleaseDebugSymbols -stripStagingDebugDebugSymbols -stripStagingProfileDebugSymbols -stripStagingReleaseDebugSymbols -validateSigningDevelopmentDebug -validateSigningDevelopmentDebugAndroidTest -validateSigningDevelopmentProfile -validateSigningDevelopmentRelease -validateSigningProductionDebug -validateSigningProductionDebugAndroidTest -validateSigningProductionProfile -validateSigningProductionRelease -validateSigningStagingDebug -validateSigningStagingDebugAndroidTest -validateSigningStagingProfile -validateSigningStagingRelease -writeDevelopmentDebugAndroidTestSigningConfigVersions -writeDevelopmentDebugApplicationId -writeDevelopmentDebugAppMetadata -writeDevelopmentDebugModuleMetadata -writeDevelopmentDebugSigningConfigVersions -writeDevelopmentProfileApplicationId -writeDevelopmentProfileAppMetadata -writeDevelopmentProfileModuleMetadata -writeDevelopmentProfileSigningConfigVersions -writeDevelopmentReleaseApplicationId -writeDevelopmentReleaseAppMetadata -writeDevelopmentReleaseModuleMetadata -writeDevelopmentReleaseSigningConfigVersions -writeProductionDebugAndroidTestSigningConfigVersions -writeProductionDebugApplicationId -writeProductionDebugAppMetadata -writeProductionDebugModuleMetadata -writeProductionDebugSigningConfigVersions -writeProductionProfileApplicationId -writeProductionProfileAppMetadata -writeProductionProfileModuleMetadata -writeProductionProfileSigningConfigVersions -writeProductionReleaseApplicationId -writeProductionReleaseAppMetadata -writeProductionReleaseModuleMetadata -writeProductionReleaseSigningConfigVersions -writeStagingDebugAndroidTestSigningConfigVersions -writeStagingDebugApplicationId -writeStagingDebugAppMetadata -writeStagingDebugModuleMetadata -writeStagingDebugSigningConfigVersions -writeStagingProfileApplicationId -writeStagingProfileAppMetadata -writeStagingProfileModuleMetadata -writeStagingProfileSigningConfigVersions -writeStagingReleaseApplicationId -writeStagingReleaseAppMetadata -writeStagingReleaseModuleMetadata -writeStagingReleaseSigningConfigVersions -zipApksForDevelopmentDebug -zipApksForDevelopmentProfile -zipApksForDevelopmentRelease -zipApksForProductionDebug -zipApksForProductionProfile -zipApksForProductionRelease -zipApksForStagingDebug -zipApksForStagingProfile -zipApksForStagingRelease +sdkDevelopmentInternalReleaseDependencyData +sdkProductionInternalReleaseDependencyData +sdkStagingInternalReleaseDependencyData +shrinkBundleDevelopmentInternalReleaseResources +shrinkBundleProductionInternalReleaseResources +shrinkBundleStagingInternalReleaseResources +shrinkDevelopmentInternalReleaseRes +shrinkProductionInternalReleaseRes +shrinkStagingInternalReleaseRes +signDevelopmentInternalDebugBundle +signDevelopmentInternalProfileBundle +signDevelopmentInternalReleaseBundle +signingConfigWriterDevelopmentInternalDebug +signingConfigWriterDevelopmentInternalDebugAndroidTest +signingConfigWriterDevelopmentInternalProfile +signingConfigWriterDevelopmentInternalRelease +signingConfigWriterProductionInternalDebug +signingConfigWriterProductionInternalDebugAndroidTest +signingConfigWriterProductionInternalProfile +signingConfigWriterProductionInternalRelease +signingConfigWriterStagingInternalDebug +signingConfigWriterStagingInternalDebugAndroidTest +signingConfigWriterStagingInternalProfile +signingConfigWriterStagingInternalRelease +signProductionInternalDebugBundle +signProductionInternalProfileBundle +signProductionInternalReleaseBundle +signStagingInternalDebugBundle +signStagingInternalProfileBundle +signStagingInternalReleaseBundle +stripDevelopmentInternalDebugDebugSymbols +stripDevelopmentInternalProfileDebugSymbols +stripDevelopmentInternalReleaseDebugSymbols +stripProductionInternalDebugDebugSymbols +stripProductionInternalProfileDebugSymbols +stripProductionInternalReleaseDebugSymbols +stripStagingInternalDebugDebugSymbols +stripStagingInternalProfileDebugSymbols +stripStagingInternalReleaseDebugSymbols +validateSigningDevelopmentInternalDebug +validateSigningDevelopmentInternalDebugAndroidTest +validateSigningDevelopmentInternalProfile +validateSigningDevelopmentInternalRelease +validateSigningProductionInternalDebug +validateSigningProductionInternalDebugAndroidTest +validateSigningProductionInternalProfile +validateSigningProductionInternalRelease +validateSigningStagingInternalDebug +validateSigningStagingInternalDebugAndroidTest +validateSigningStagingInternalProfile +validateSigningStagingInternalRelease +writeDevelopmentInternalDebugAndroidTestSigningConfigVersions +writeDevelopmentInternalDebugApplicationId +writeDevelopmentInternalDebugAppMetadata +writeDevelopmentInternalDebugModuleMetadata +writeDevelopmentInternalDebugSigningConfigVersions +writeDevelopmentInternalProfileApplicationId +writeDevelopmentInternalProfileAppMetadata +writeDevelopmentInternalProfileModuleMetadata +writeDevelopmentInternalProfileSigningConfigVersions +writeDevelopmentInternalReleaseApplicationId +writeDevelopmentInternalReleaseAppMetadata +writeDevelopmentInternalReleaseModuleMetadata +writeDevelopmentInternalReleaseSigningConfigVersions +writeProductionInternalDebugAndroidTestSigningConfigVersions +writeProductionInternalDebugApplicationId +writeProductionInternalDebugAppMetadata +writeProductionInternalDebugModuleMetadata +writeProductionInternalDebugSigningConfigVersions +writeProductionInternalProfileApplicationId +writeProductionInternalProfileAppMetadata +writeProductionInternalProfileModuleMetadata +writeProductionInternalProfileSigningConfigVersions +writeProductionInternalReleaseApplicationId +writeProductionInternalReleaseAppMetadata +writeProductionInternalReleaseModuleMetadata +writeProductionInternalReleaseSigningConfigVersions +writeStagingInternalDebugAndroidTestSigningConfigVersions +writeStagingInternalDebugApplicationId +writeStagingInternalDebugAppMetadata +writeStagingInternalDebugModuleMetadata +writeStagingInternalDebugSigningConfigVersions +writeStagingInternalProfileApplicationId +writeStagingInternalProfileAppMetadata +writeStagingInternalProfileModuleMetadata +writeStagingInternalProfileSigningConfigVersions +writeStagingInternalReleaseApplicationId +writeStagingInternalReleaseAppMetadata +writeStagingInternalReleaseModuleMetadata +writeStagingInternalReleaseSigningConfigVersions +zipApksForDevelopmentInternalDebug +zipApksForDevelopmentInternalProfile +zipApksForDevelopmentInternalRelease +zipApksForProductionInternalDebug +zipApksForProductionInternalProfile +zipApksForProductionInternalRelease +zipApksForStagingInternalDebug +zipApksForStagingInternalProfile +zipApksForStagingInternalRelease Rules ----- Pattern: clean: Cleans the output files of a task. Pattern: build: Assembles the artifacts of a configuration. -BUILD SUCCESSFUL in 512ms +BUILD SUCCESSFUL in 717ms 1 actionable task: 1 executed diff --git a/packages/shorebird_cli/test/src/commands/init_command_test.dart b/packages/shorebird_cli/test/src/commands/init_command_test.dart index 96a37890..fdcf6da0 100644 --- a/packages/shorebird_cli/test/src/commands/init_command_test.dart +++ b/packages/shorebird_cli/test/src/commands/init_command_test.dart @@ -361,7 +361,14 @@ If you want to reinitialize Shorebird, please run "shorebird init --force".''', }); test('creates shorebird.yaml for an app with flavors', () async { - final appIds = ['test-appId-1', 'test-appId-2', 'test-appId-3']; + final appIds = [ + 'test-appId-1', + 'test-appId-2', + 'test-appId-3', + 'test-appId-4', + 'test-appId-5', + 'test-appId-6' + ]; var index = 0; when( () => codePushClient.createApp(displayName: any(named: 'displayName')), @@ -388,8 +395,11 @@ If you want to reinitialize Shorebird, please run "shorebird init --force".''', app_id: ${appIds[0]} flavors: development: ${appIds[0]} - production: ${appIds[1]} - staging: ${appIds[2]}'''), + developmentInternal: ${appIds[1]} + production: ${appIds[2]} + productionInternal: ${appIds[3]} + staging: ${appIds[4]} + stagingInternal: ${appIds[5]}'''), ); verifyInOrder([