迁移到 Android Studio 3.0 可绘制对象后 'png' 未在调试版本中压缩
After migrate to Android Studio 3.0 drawable 'png' NOT compressed in debug build
Drawables 在发布构建类型中压缩,但在调试构建类型中未压缩。
Android Studio 3.0
Build #AI-171.4408382, built on October 20, 2017
JRE: 1.8.0_152-release-915-b01 amd64
JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
Linux 4.10.0-38-generic
在以前的版本中,drawable 总是被压缩
我如何配置调试版本以同时压缩 png
可绘制对象?
原因已记录 here
这是引用
If you're using Android plugin 3.0.0 or higher, PNG crunching is
disabled by default for only the "debug" build type
我通过在 build.gradle
:
中添加 crunchPngs true
来调试构建类型配置来解决我的问题
buildTypes {
debug {
minifyEnabled false
shrinkResources false
crunchPngs true # <------ This option
}
Drawables 在发布构建类型中压缩,但在调试构建类型中未压缩。
Android Studio 3.0
Build #AI-171.4408382, built on October 20, 2017
JRE: 1.8.0_152-release-915-b01 amd64
JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
Linux 4.10.0-38-generic
在以前的版本中,drawable 总是被压缩
我如何配置调试版本以同时压缩 png
可绘制对象?
原因已记录 here
这是引用
If you're using Android plugin 3.0.0 or higher, PNG crunching is disabled by default for only the "debug" build type
我通过在 build.gradle
:
crunchPngs true
来调试构建类型配置来解决我的问题
buildTypes {
debug {
minifyEnabled false
shrinkResources false
crunchPngs true # <------ This option
}