Design a site like this with WordPress.com
Android Nuggets 9: App Bundles (.aab)
Date: 9th Aug 2021
Author: karandeepmalik
App bundles nowadays is the official publishing format for publishing apps on Play store. An app bundle (.aab) is replacement for the earlier format apk that was widely used for distribution. App bundles are signed binaries that organize your app’s code and resources into modules
Android ecosystem has come up with two separate formats – the split publishing format for publishing apps on app store and serving format – APK for serving app on device. Google play optimises the serving format (apk) by selectively removing resources and codes for multiple screen densities, device configurations, chip architectures and languages from the publishing format (.aab) and keeps only what is required and used on device. If a new language support is enable by user, the apk would be updated for this new language on device via google play support at run time.
There is an average reduction of 20 % size seen due to the new served apks using App Bundle. Since, Google play rearranges and repackages the app bundles into APKs which are encrypted by developer keys during their creation, it requires the developers to share their keys using app-signing service. App bundles are divided in to modules and code and resources for each module are organized similarly to what you would find in an APK— as each of these modules may be generated as separate APKs. Google Play then uses the app bundle to generate the various APKs ( split apks ) that are served to users, such as the base APK, feature APKs, configuration APKs, and (for devices that do not support split APKs) multi-APKs.
App Bundles especially works well when you design modules of your app in a way that you can deliver modules as per requirement. Developers can deliver app modules conditionally or on demand as needed by user, just that there will be delay for the module to get downloaded the first time. The dynamic delivery mechanism is especially useful in areas like games where you may want to download resources for the next level in game on demand ie only when the user clears previous levels. This is also called dynamic asset delivery. Developer can make asset packs and dynamically deliver them. Assets takes max space for games, the core logic doesnt take that much space.
The structure of an Android App Bundle (*aab)
App Bundles are helpful in other on demand module delivery scenarios as well such as developer may wish to deliver the premium features module only if user is a premium user or if the developer may want to provide feature modules based on in-app purchases done by the user. Developers need to use play core library for on demand modules but for conditional modules or install time modules – they can do the logic on android studio and using configuration. Modularisation of app also helps with build times as modules can be built in parallel. Also rebuilds are much shorter because less interdependent code since changing one piece may not required entire rebuild but only rebuild of module
Share this:
Related