android - 如何从 Android Studio 构建所有产品风格?

标签 android android-studio gradle build android-gradle-plugin

我在 gradle 文件中有很多口味:

      def _versionName = "1.19"
      def _applicationId = "com.site.app"
      productFlavors {
        CafebazarPro {
            applicationId "${_applicationId}"
            versionName "${_versionName}" +"-Cafebazar-Pro"
       }


        CafebazarInPurchase {
            applicationId "${_applicationId}.inpurchase"
            versionName "${_versionName}" +"-Cafebazar-InPurchase"
         }

        //-------------------------------------------

        Cando {
            applicationId ${_applicationId}"
            versionName  "${_versionName}" +"-Cando-Pro"
        }

        //-------------------------------------------

        Myket {
            applicationId "${_applicationId}"
            versionName  "${_versionName}" +"-Myket-Pro"
        }

        //-----------------------------------------

        IranApps {
            applicationId "${_applicationId}"
            versionName  "${_versionName}" +"-IranApps-Pro"
        }
     }

如何自动构建所有口味?不是一一选择和构建。

最佳答案

打开 Cmd 并运行此命令:

gradlew tasks

Build tasks
-----------
assemble - Assembles all variants of all applications and secondary packages.
assembleAndroidTest - Assembles all the Test applications.
assembleDebug - Assembles all Debug builds.
assembleRelease - Assembles all Release builds.
build - Assembles and tests this project.
buildDependents - Assembles and tests this project and all projects that depend on it.
buildNeeded - Assembles and tests this project and all projects it depends on.
classes - Assembles main classes.
clean - Deletes the build directory.
compileDebugAndroidTestSources
compileDebugSources
compileDebugUnitTestSources
compileReleaseSources
compileReleaseUnitTestSources
jar - Assembles a jar archive containing the main classes.
mockableAndroidJar - Creates a version of android.jar that's suitable for unit tests.
testClasses - Assembles test classes.

Build Setup tasks
-----------------
init - Initializes a new Gradle build. [incubating]
wrapper - Generates Gradle wrapper files. [incubating]

Documentation tasks
-------------------
javadoc - Generates Javadoc API documentation for the main source code.

Help tasks
----------
buildEnvironment - Displays all buildscript dependencies declared in root project 'src'.
components - Displays the components produced by root project 'src'. [incubating]
dependencies - Displays all dependencies declared in root project 'src'.
dependencyInsight - Displays the insight into a specific dependency in root project 'src'.
help - Displays a help message.
model - Displays the configuration model of root project 'src'. [incubating]
projects - Displays the sub-projects of root project 'src'.
properties - Displays the properties of root project 'src'.
tasks - Displays the tasks runnable from root project 'src' (some of the displayed tasks may belong to subprojects).

Install tasks
-------------
installDebug - Installs the Debug build.
installDebugAndroidTest - Installs the android (on device) tests for the Debug build.
uninstallAll - Uninstall all applications.
uninstallDebug - Uninstalls the Debug build.
uninstallDebugAndroidTest - Uninstalls the android (on device) tests for the Debug build.
uninstallRelease - Uninstalls the Release build.

Verification tasks
------------------
check - Runs all checks.
connectedAndroidTest - Installs and runs instrumentation tests for all flavors on connected devices.
connectedCheck - Runs all device checks on currently connected devices.
connectedDebugAndroidTest - Installs and runs the tests for debug 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 all variants.
lintDebug - Runs lint on the Debug build.
lintRelease - Runs lint on the Release build.
test - Run unit tests for all variants.
testDebugUnitTest - Run unit tests for the debug build.
testReleaseUnitTest - Run unit tests for the release build.

Other tasks
-----------
clean
jarDebugClasses
jarReleaseClasses
transformResourcesWithMergeJavaResForDebugUnitTest
transformResourcesWithMergeJavaResForReleaseUnitTest

gradlew assemble - Assembles all variants of all applications and secondary packages.

关于android - 如何从 Android Studio 构建所有产品风格?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37364004/

相关文章:

Android Studio Stuck at Gradle 下载创建新项目

android - 迁移到 Gradle 插件 3.0 后编译时出现 DexArchiveBuilderException

android - 将项目更新到 Android X 后编译时出错

android - adb:加载共享库时出错:libncurses.so.5:无法打开共享对象文件:没有这样的文件或目录

android - ScrollView 内的 ViewPager - 垂直滚动不起作用

android - 在 ViewModel 中从 SqlDelight 收集流时出现 java.lang.IllegalStateException

java - RxJava/RxAndroid - 处理多个 EditText 更改

java - 使用进度条的问题

android - Android Studio 崩溃后的 "invalid symbol name"

android - 滑动时 ViewPager 太慢(使用 Picasso)