Android App Bundle是 Android 新推出的一種官方發(fā)布格式(.aab)。通過使用Android App Bundle你可以減少應(yīng)用的包大小,從而提升安裝成功率并減少卸載量。
只要在app下的build.gradle文件中加入bundle{}
android {
? ? compileSdkVersion 30
? buildToolsVersion "30.0.0"
? ? bundle {
? ? ? ? density {
? ? ? ? ? ? // Different APKs are generated for devices with different screen densities; true by default.
? ? ? ? ? ? enableSplit true
? ? ? ? }
? ? ? ? abi {
? ? ? ? ? ? // Different APKs are generated for devices with different CPU architectures; true by default.
? ? ? ? ? ? enableSplit true
? ? ? ? }
? ? ? ? language {
? ? ? ? ? ? // This is disabled so that the App Bundle does NOT split the APK for each language.
? ? ? ? ? ? // We're gonna use the same APK for all languages.
? ? ? ? ? ? enableSplit true
? ? ? ? }
? ? }
}