android gradle 多渠道打包小结
生活随笔
收集整理的這篇文章主要介紹了
android gradle 多渠道打包小结
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
概述
多渠道對于android來說是一個比較常見的概念,舉幾個常見的用法:
github地址
本文項目基于筆者自己寫的demo,對其有興趣的讀者可以自行下載:
https://github.com/Double2hao/MultiChannelTest
android studio的多渠道
如果要使用多渠道,僅需要在該項目的build.gradle文件中增加以下代碼:
android {flavorDimensions "version"productFlavors {oneTest {}twoTest {}threeTest {}} }然后可以在android studio左側欄中的 Build Variants 中選擇module的渠道,如下圖:
buildConfig區分不同的渠道
通過buildConfigField可以在BuildConfig中設置不同的參數,然后在代碼中可以通過BuildConfig的參數來區分不同的渠道。
productFlavors {oneTest {buildConfigField("String", "TEST_CHANNEL", "\"one\"")}twoTest {buildConfigField("String", "TEST_CHANNEL", "\"two\"")}threeTest {buildConfigField("String", "TEST_CHANNEL", "\"three\"")}}Demo中BuildConfig的代碼如下:
public final class BuildConfig {public static final boolean DEBUG = Boolean.parseBoolean("true");public static final String APPLICATION_ID = "com.example.multichanneltest";public static final String BUILD_TYPE = "debug";public static final String FLAVOR = "threeTest";public static final int VERSION_CODE = 1;public static final String VERSION_NAME = "1.0";// Field from product flavor: threeTestpublic static final String TEST_CHANNEL = "three"; }Demo中BuildConfig的使用代碼如下:
public class MainActivity extends Activity {@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);//根據不同的渠道參數來作不同的邏輯if (TextUtils.equals(BuildConfig.TEST_CHANNEL, "one")) {} else if (TextUtils.equals(BuildConfig.TEST_CHANNEL, "two")) {} else if (TextUtils.equals(BuildConfig.TEST_CHANNEL, "three")) {}} }manifest區分不同的渠道
通過使用manifestPlaceholders,為不同的渠道設置不同的值。
productFlavors {oneTest {manifestPlaceholders = [test_app_name: "TestOneApp"]}twoTest {manifestPlaceholders = [test_app_name: "TestTwoApp"]}threeTest {manifestPlaceholders = [test_app_name: "TestThreeApp"]}}Demo中為不同的渠道設置了不同的appName,代碼如下:
<applicationandroid:allowBackup="true"android:icon="@mipmap/ic_launcher"android:label="${test_app_name}"android:roundIcon="@mipmap/ic_launcher_round"android:supportsRtl="true"android:theme="@style/Theme.MultiChannelTest"></application>設置不同渠道的資源
通過設置sourceSets,可以為不同的渠道設置不同的資源。
如下,Demo中的代碼,在不同的渠道下,使用不同的java資源。
如果在oneTest的渠道下,"src/main/twoTest"與"src/main/threeTest"目錄下的文件不會參與編譯。
總結
以上是生活随笔為你收集整理的android gradle 多渠道打包小结的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 转贴:放心走吧,谷歌中国——谷歌员工所写
- 下一篇: 软件著作权和高新技术企业的关系