如何在 BuildType 属性中指定PNG运算。
我们如何在android studio中启用/禁用PNG运算。
答案 0 :(得分:1)
指定PNG运行现在是 BuildType 属性,默认情况下在调试版本中被禁用:
android {
…
buildTypes {
release {
crunchPngs true// or false
}
}
}
注意:可从Android Studio 3.0 Canary 5 获取。