使用resConfigs去除无用语言资源

当应用不需要支持几十种语言时,可以通过配置 resConfigs 去除无用的语言资源。
例如下面的代码就只保留了中文和英文的语言资源:

defaultConfig {
    resConfigs "zh","en"
}

注:
resConfigs "hdpi", "xhdpi", "xxhdpi", "xxxhdpi"
在新版本中已经废弃,替代方案是在 gradle 中使用 splits 根据不同的 ABI 以及不同的屏幕密度分别打包。

android {
    splits {
        density {
            enable true
            exclude 'ldpi', 'mdpi'
            compatibleScreens 'normal', 'large', 'xlarge'
        }
        abi {
            enable true
            reset()
            include 'x86', 'x86_64', 'armeabi-v7a', 'arm64-v8a' //select ABIs to build APKs for
            universalApk true //generate an additional APK that contains all the ABIs
        }
    }
}

官方链接:https://developer.android.com/studio/build/configure-apk-splits.html

你可能感兴趣的:(使用resConfigs去除无用语言资源)