使用 Gradle 实现 debug 与 release 不同 APP 名
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 就会不同名字。