Android 多渠道配置

Android 多包名,icon

本篇文章主要记录下android 下的同一工程,打包时配置不同的包名,icon,名称等信息.

1: 多包名

首先讲述下如何配置多包名.

在build.gralde的android 标签下添加:

复制代码
productFlavors{
        xiaomi{
            applicationId "com.test.usagetest"
        }
        huawei{
            applicationId "com.test.usagetest1"
        }
}

此时如果我们运行的话,会出现下面错误:

复制代码
A problem occurred configuring project ':app'.
> All flavors must now belong to a named flavor dimension. Learn more at https://d.android.com/r/tools/flavorDimensions-missing-error-message.html

解决办法:

defaultConfig添加一行代码:

复制代码
flavorDimensions "versionCode"

此时编译重新运行即可.

2: 多icon

  1. 修改manifest.xml

    java 复制代码
    <application
        android:allowBackup="true"
        android:icon="${app_icon}"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/Theme.UsageTest">

    将icon属性由原来的"@mipmap/ic_launcher" 替换成${app_icon}

  2. 修改build.gradle

    shell 复制代码
    productFlavors{
        xiaomi{
            applicationId "com.test.usagetest"
            manifestPlaceholders = [app_icon : "@mipmap/ic_launcher"]
        }
        huawei{
            applicationId "com.test.usagetest1"
            manifestPlaceholders = [app_icon : "@mipmap/ic_launcher2"]
        }
    }

运行后可以看到icon已替换.

3:多名称

修改方法与icon一致.

复制代码
productFlavors{
    xiaomi{
        applicationId "com.test.usagetest"
        manifestPlaceholders = [app_icon : "@mipmap/ic_launcher",
                                app_name : "test1"]
    }
    huawei{
        applicationId "com.test.usagetest1"
        manifestPlaceholders = [app_icon : "@mipmap/ic_launcher2",
                                app_name : "test2"]
    }
}

4: 多资源

不同的包名对应不同的资源文件.

配置res的不同路径.

复制代码
 sourceSets{
        xiaomi{
            res.srcDir("src/main/res")
        }
        huawei{
            res.srcDir("src/hw/res")
        }
}

相同资源名称下设置不同的值即可.

相关推荐
allk5510 分钟前
Android APK 极限瘦身:从构建链优化到架构演进
android·架构
啊西:12 分钟前
SuperMap iMobile for Android中模型按照指定路径运动
android
码农101号19 分钟前
Ansible - Role介绍 和 使用playbook部署wordPress
android·ansible
a_eastern21 分钟前
linux electron-forge离线打包关键配置
android·linux·electron
城东米粉儿1 小时前
Dynamic Feature Modules 笔记
android
无言Echo1 小时前
Android 高斯模糊(1) 窗口模糊及java侧基本流程简述
android
无言Echo1 小时前
Android 高斯模糊(2)BackgroundBlurDrawable使用及相关Bug
android
清蒸鳜鱼1 小时前
【Open-AutoGLM】MacOS+Android配置、使用指南
android·macos
唐叔在学习1 小时前
buildozer打包详解:细说那些我踩过的坑
android·后端·python
2501_946233891 小时前
Flutter与OpenHarmony帖子详情页面开发
android·java·flutter