在android studio中启用/禁用PNG运算

时间:2017-07-01 05:10:56

标签: android android-studio build.gradle android-studio-3.0

如何在 BuildType 属性中指定PNG运算。

我们如何在android studio中启用/禁用PNG运算。

1 个答案:

答案 0 :(得分:1)

指定PNG运行现在是 BuildType 属性,默认情况下在调试版本中被禁用:

android {
    …
    buildTypes {
        release {
            crunchPngs true// or false
        }
    }
}

注意:可从Android Studio 3.0 Canary 5 获取。