Disable Android resource / image / PNG optimization

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

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

    add above the line on android block in

    in ionic/Cordova project : root_folder_Of_App/platforms/android/app/build.gradle

    in Android project: app/build.gradle

    For More Information Visit: https://androidstudio.googleblog.com/2017/06/android-studio-30-canary-5-is-now.html

提交回复
热议问题