As the change log of Android Studio 3.0 Canary 5, we have a new buildTypes property called crunchPngs, and could use it on gradle:
android {
…
buildTypes {
release {
crunchPngs true
}
}
}
What does it do?