What does crunchPngs mean in Android buildTypes?

Viewed 1676

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?

2 Answers
Related