Disable Android resource / image / PNG optimization

后端 未结 6 1035
滥情空心
滥情空心 2020-12-14 01:56

How do I prevent the Android \"build process\" from optimizing .png images?

I have an Android project with the following res directories:

- /res/
- /         


        
6条回答
  •  爱一瞬间的悲伤
    2020-12-14 02:57

    Specifying PNG crunching is now a BuildType property and is disabled by default on debug builds:

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

    Note: It's available from Android Studio 3.0 Canary 5 .

提交回复
热议问题