Androidstudio shrinkResources
2019-08-29 本文已影响0人
lucas777
android {
buildTypes {
release {
minifyEnabled true
shrinkResources true
}
}
}
minifyEnabled是否开启混淆
shrinkResources删除无效的Resource
shrinkResources依赖于minifyEnabled,必须一起用,一起设置为true或者false