android tutorial - Remove unused alternative resources in android | Developer android - android app development - android studio - android app developement



Remove unused alternative resources in android

All libraries come with resources that are not necessary useful to your application. For example Google Play Services comes with translations for languages your own application don’t even support.

defaultConfig {
    // ...

    resConfigs "en", "de", "it"
    resConfigs "nodpi", "xhdpi", "xxhdpi", "xxxhdpi"
}
click below button to copy code from our android learning website - android tutorial - team

Related Searches to Remove unused alternative resources in android