android {
buildTypes {
release {
minifyEnabled true
shrinkResources true
}
}
}
minifyEnabled是否开启混淆
shrinkResources删除无效的Resource
shrinkResources依赖于minifyEnabled,必须一起用,一起设置为true或者false
android {
buildTypes {
release {
minifyEnabled true
shrinkResources true
}
}
}
minifyEnabled是否开启混淆
shrinkResources删除无效的Resource
shrinkResources依赖于minifyEnabled,必须一起用,一起设置为true或者false
本文标题:Androidstudio shrinkResources
本文链接:https://www.haomeiwen.com/subject/yuubectx.html
网友评论