android tutorial - Disable image compression in Android | Developer android - android app development - android studio - android app developement



Disable image compression for a smaller APK file size

  • If you are optimizing all images manually, disable APT Cruncher for a smaller APK file size.
android {
    
    aaptOptions {
        cruncherEnabled = false
    }
}
click below button to copy code from our android learning website - android tutorial - team

Related Searches to Disable image compression in Android