Updated 15 March 2019
An Android App Bundle is a new upload format that includes all your app’s compiled code and resources, but defers APK generation and signing to Google Play.
Google Play’s new app serving model, called Dynamic Delivery, then uses your app bundle to generate and serve optimized APKs for each user’s device configuration, so they download only the code and resources they need to run your app. You no longer have to build, sign, and manage multiple APKs to support different devices, and users get smaller, more optimized downloads.
You can easily build your app bundle using Android Studio(3.2 Canary 14+) or using command line interface. The generated app bundle will be stored at app/build/outputs/bundle/buildVariant/bundle.aab
.
Go to Build
and select
> Build Bundle(s)/APK(s)Build Bundle(s)
You may also split the apk according to the app needs in application level build.gradle
1 2 3 4 5 6 7 8 9 10 11 |
bundle { language { enableSplit = true } density { enableSplit = true } abi { enableSplit = true } } |
If you have more details or questions, you can reply to the received confirmation email.
Back to Home
Be the first to comment.