刪除未使用的替代資源
所有庫都附帶了對你的應用程式不必要的資源。例如,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"
}