使用 Gradle 實現 debug 與 release 不同 APP 名

出自Silica Library | 間奏時光
跳至導覽 跳至搜尋

2020-03-22 00:15

使用

android {
    ...
    buildTypes {
        debug {
            resValue "string", "app_name", "APP Debug Version"
            ...
        }
        release {
            resValue "string", "app_name", "APP Release Version"
            ...
        }
    }
}

  注意,記得在 strings.xml 中注釋掉原有的 app_name 條目,不然會打包出錯。