Android studio 多版本apk 打包
阿新 • • 發佈:2019-02-04
只需要在build.gradle中的 android{…….}中配置幾行程式碼即可:
//配置多版本的apk
productFlavors{
Beta{
applicationId "com.stfalcon.mvphelpersample.beta"
manifestPlaceholders = [app_name:"app名稱" ,icon: "@mipmap/ic_launcher"]
//在java程式碼中具體的使用方式為:context.getResources().getString (R.string.strKey);
resValue("string" , "strKey","beta版本")
}
Releases{
applicationId "com.stfalcon.mvphelpersample.release"
manifestPlaceholders = [app_name:"app名稱",icon: "@mipmap/ic_launcher"]
resValue("string" , "strKey","release版本" )
}
}
//這裡applicationId你想要修改成的包名