删除未使用的替代资源
所有库都附带了对你的应用程序不必要的资源。例如,Google Play 服务附带了你自己的应用程序甚至不支持的语言的翻译。
你可以配置 build.gradle 文件以指定要保留的资源。
例如:
defaultConfig {
// ...
resConfigs "en", "de", "it"
resConfigs "nodpi", "xhdpi", "xxhdpi", "xxxhdpi"
}
所有库都附带了对你的应用程序不必要的资源。例如,Google Play 服务附带了你自己的应用程序甚至不支持的语言的翻译。
你可以配置 build.gradle 文件以指定要保留的资源。
例如:
defaultConfig {
// ...
resConfigs "en", "de", "it"
resConfigs "nodpi", "xhdpi", "xxhdpi", "xxxhdpi"
}