Disable Android resource / image / PNG optimization

后端 未结 6 929
滥情空心
滥情空心 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:36

    Android Studio: Since Gradle Android plugin 1.0.0:

    android {
    ...
      aaptOptions {
        useNewCruncher false
      }
    ....
    }
    

    Eclipse: Override the crunch task writing this in your build.xml:

    
       
    
    

提交回复
热议问题