使用 Gradle 实现 debug 与 release 不同 APP 名

来自Silica Library | 間奏時光
Silica讨论 | 贡献2020年3月21日 (六) 16:25的版本 (创建页面,内容为“Category:Android 2020-03-22 00:15 == 使用 == <pre> android { ... buildTypes { debug { resValue "string", "app_name", "@string/app_…”)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳到导航 跳到搜索

2020-03-22 00:15

使用

android {
    ...
    buildTypes {
        debug {
            resValue "string", "app_name", "@string/app_name_debug"
            ...
        }
        release {
            resValue "string", "app_name", "@string/app_name_release"
            ...
        }
    }
}

  在 strings.xml 中建立对应的 app_name_debug 和 app_name_release,通过 Gradle 打包出来的 debug 和 release 的同个 APP 就会不同名字。