コマンドラインから私の異なるフレーバーの1つだけを作成することが可能かどうか誰かが教えてもらえますか?
現在のところ、実行する方法はわかりません。たとえば、
gradle buildDev
Devが私の異なるフレーバーの1つであるとき。確かに、私は実行する必要があります:
gradle build
そして、すべてのフレーバーが構築されます。
一部のフレーバーはスキップします。出来ますか?
ありがとう
回答:
build
タスクにはフレーバー固有のバージョンはありませんが、assemble
およびinstall
タスクにはフレーバー固有のバージョンがあります。assemble
APKを作成します。install
デバイス/エミュレータにインストールします。
たとえば、中にこのサンプルプロジェクトで、私は2つの製品のフレーバー(定義chocolate
とvanilla
()と合計3つのビルドの種類をdebug
、release
とmezzanine
)。
gradle tasks
ショーの実行など:
Build tasks
-----------
assemble - Assembles all variants of all applications and secondary packages.
assembleChocolate - Assembles all builds for flavor Chocolate
assembleChocolateDebug - Assembles the Debug build for flavor Chocolate
assembleChocolateDebugTest - Assembles the Test build for the ChocolateDebug build
assembleChocolateMezzanine - Assembles the Mezzanine build for flavor Chocolate
assembleChocolateRelease - Assembles the Release build for flavor Chocolate
assembleDebug - Assembles all Debug builds
assembleMezzanine - Assembles all Mezzanine builds
assembleRelease - Assembles all Release builds
assembleTest - Assembles all the Test applications
assembleVanilla - Assembles all builds for flavor Vanilla
assembleVanillaDebug - Assembles the Debug build for flavor Vanilla
assembleVanillaDebugTest - Assembles the Test build for the VanillaDebug build
assembleVanillaMezzanine - Assembles the Mezzanine build for flavor Vanilla
assembleVanillaRelease - Assembles the Release build for flavor Vanilla
Install tasks
-------------
installChocolateDebug - Installs the Debug build for flavor Chocolate
installChocolateDebugTest - Installs the Test build for the ChocolateDebug build
installChocolateMezzanine - Installs the Mezzanine build for flavor Chocolate
installChocolateRelease - Installs the Release build for flavor Chocolate
installVanillaDebug - Installs the Debug build for flavor Vanilla
installVanillaDebugTest - Installs the Test build for the VanillaDebug build
installVanillaMezzanine - Installs the Mezzanine build for flavor Vanilla
installVanillaRelease - Installs the Release build for flavor Vanilla
uninstallAll - Uninstall all applications.
uninstallChocolateDebug - Uninstalls the Debug build for flavor Chocolate
uninstallChocolateDebugTest - Uninstalls the Test build for the ChocolateDebug build
uninstallChocolateMezzanine - Uninstalls the Mezzanine build for flavor Chocolate
uninstallChocolateRelease - Uninstalls the Release build for flavor Chocolate
uninstallVanillaDebug - Uninstalls the Debug build for flavor Vanilla
uninstallVanillaDebugTest - Uninstalls the Test build for the VanillaDebug build
uninstallVanillaMezzanine - Uninstalls the Mezzanine build for flavor Vanilla
uninstallVanillaRelease - Uninstalls the Release build for flavor Vanilla
gradle assembleChocolateDebug
につながるbuild/apk/HelloProductFlavors-chocolate-debug-unaligned.apk
プロジェクトに配置されています。しかし、味がおいしい場合にのみ機能する可能性を排除することはできません。:-)
:<module>:assemble<FlavorName>
@CommonsWareからの回答を簡略化します。回答が少し混乱したからです。
これらは製品のフレーバーであると考えてください
走る
Gradlewタスク
これにより、すべての製品フレーバーとビルドタイプが一覧表示されます
assemble - Assembles all variants of all applications and secondary packages.
assembleAndroidTest - Assembles all the Test applications.
assembleDebug - Assembles all Debug builds.
assembleDEV - Assembles all DEV builds.
assemblePREPROD - Assembles all PREPROD builds.
assemblePROD - Assembles all PROD builds.
assembleRelease - Assembles all Release builds.
これから、フレーバーを簡単に選択でき、それに基づいてビルドを生成します
Gradlew AssemblePREPROD
gradle
paramsなしで実行してから、出力を読み取ります...実行するヒントがありますgradle tasks
...