AAB File: Everything A Developer Need To Know About

Google released the AAB as part of its attempts to minimize the size of Android apps. Now let's talk about it!

Traditionally, developers upload APK files directly to Google Play for distribution. However, with the release of the new Android App Bundle format (AAB), Google advises developers to use Android Studio 3.2 or later versions to convert to the new format. AAB introduced the Dynamic Delivery feature, which automatically produces APK files once an AAB file is published to the Google Play Console.


What is an AAB file?

Google released the AAB as part of its attempts to minimize the size of Android apps. The AAB file includes the app's entire programme code. When the app is coded completely, the developer uploads it to the Google Play Store in AAB format. It contains just the parts of the programme that each device needs to execute. Google Play uses AAB to build optimal APK files for various device setups depending on DRI, CPU architecture, and languages.

AAB then distributes these to various users based on what works best for each device, a process known as Dynamic Delivery. The app download sizes will be greatly decreased using Dynamic Delivery. App bundles cannot be installed on user devices like APKs. They are instead intended to be used to generate APK files for specific device settings. 

A programme called bundletool can be used to produce APK files from an AAB file. Google provides this application so that developers may test app bundles on local devices before submitting them to Google Play.


What is the difference between AAB and APK?

App Bundles are a publishing format, whereas APK (Android application package) is the packaging format that is ultimately installed on the device.

1. AAB files are custom-made for your device

Resources in an app are everything that isn't computer code, such as graphics, language files, or music. When you click the "Install" button for an app in the Play Store, Google will give you an APK file customised from the AAB file for your device.

Example: If the smartphone's resolution supports only Full HD, then it will get an APK without 4K content. If English and German are chosen as device languages, then the French language pack is ignored.

2. Google signing instead of the developer signing

Another significant difference is the way the apps are signed. Previously, the creator of an app was always the one who signed it with their developer key. When installing the app on a smartphone, this key can be used to determine whether it has been compromised.

Now, Google will sign the APKs rather than the developer, specifically when producing APK files from AABs. Logically, the keys will be kept by Google rather than the developers.

3. Smaller file sizes than APKs

The APKs generated through the AAB manner are smaller compared to the native APK. On average, you should be able to see a 35% reduction in this method. That doesn't sound like much at first glance, but when one includes the numerous updates for apps, it could add up at some point.

Speaking of app update, if you don't want to update your subscription apps every time when google play store changes its subscription code, you should know about appflow.ai. It is a mobile subscription management and analytics tool for maintaining  and analyze your in-app subscription. You can also use the tool to do code-free marketing experiments, like paywall A/B testing and push notifications without any app update. 

Create a free appflow.ai account with no credit card required and free yourself from any purchase backend maintenance.

4. AAB offers better protection for apps

Another benefit that developers will find useful would be increased security. It will probably be more difficult to modify apps in the future, and the mod creation team might not be very happy about that. Who knows, maybe this will reduce the number of cheaters in your favourite game.


How to Create an Android App Bundle?

There are two methods to create an AAB file

  • Command Line Method 
  • Android Studio Method


Command Line Method:

  1. Open the command prompt and, using the command below, perform the bundle tasks.
    ./gradlew bundleRelease
  2. Find your bundle in the build directory of your application. App/buildoutputs/bundle/release is the default destination. The command jarsigner must be used to sign this package.        
    jarsigner -keystore $pathToKeystore app-release.aab $keyAlias
  3. Replace the keyStore and keyAlias variables with the Keystore and password's actual values. The package will be signed and ready to be uploaded to Google Play.


Android Studio Method:

  1. To get started, go to Android Studio → Build -> Generate a Signed Bundle.
  2. On the pop-up menu, choose Android App Bundle and then Next.
  3. Enter the KeyStore path or the location where the KeyStore is saved and Create a new KeyStore.
  4. Choose a release mode from the drop-down menu and click Finish.

Now, a signed app bundle is ready. There will be an .aab file in the destination folder. This is the target Bundle file, which can now be uploaded to the Play Store and published.


How to Open AAB File? 

To open an AAB file, you'll need software like Authorware. You'll get a Windows message asking "How do you wish to open this file?" if you don't have the right software". If you're having trouble opening your AAB file, try right-clicking or long-pressing it. Then select a programme from the "Open with" drop-down menu. 

You can also view an AAB file directly using this link. Simply drag and drop the file into this browser window. It can also be opened with bundletool and android studio.

Prerequisites for testing the AAB file using bundletool:

  • A test device (Android)
  • Unzipping software, such as WinRAR
  • Bundletool

The following are the steps required to test the AAB file using Bundletool

        1. Download bundletool by clicking this here

        2. From your app bundle file, create an APK Set archive (.apks). Use the following command to produce an APK set for all device configurations supported by your app. 

             Note: Both your app bundle file and bundletool must be in the same directory for the below command to work:         

             java -jar "bundletool-all-1.10.0.jar" build-apks --bundle="app-release.aab" --output="app.apks"

             The.apks file will be produced in the same folder.

         3. Check the .apks file's content by converting it to a zip file and then extracting its contents with WinRAR.

         4. Bundletool can now deploy the right combination of APKs to a connected device from a group of APKs generated.


How to install it?

Install .aab Files Using App Bundle Installer:

  1. Install App Bundle Installer and go to the home screen and choose "Select AAB." When the next screen displays, select your .aab file by tapping the "Select AAB File" button.
  2. Select the .aab file with your preferred Android file manager, then hit the "Install File" option in the app to begin the installation procedure.
  3. The app will now display a pop-up explaining how it works. It uploads the .aab file, changes it to.apk format, signs it, and downloads it to your device.
  4. The app installation prompt will appear once the.apk file is ready. Tap "Install" to begin the installation process, and then "Open" to begin using the app.


How to Decompile the AAB File?

Method 1:

To convert your AAB to an APK, and decompile the APK later.

Follow these steps to create an APK file from an AAB file

The APK file may then be decompiled using Android Apk decompiler .


Method 2:

The JDAX can be used to decompile the AAB bundle file. Use the following link, https://androidrepo.com/repo/skylot-jadx-android-security--decompiler.

This method will save the time and effort of converting the APK as the first processing step.

However, there are restrictions. The biggest issue will be code obfuscation, although it's preferable to have a code template for recreating the software than starting from scratch.


Conclusion

A huge number of apps in the Google Play Store have already been published as AAB by their developers to exploit its advantages. The difficulty in app updates stems from the fact that Google is in charge of app signing, rather than the developers. The process of app updates and development has also been simplified, which has resulted in the prevention of broken updates. 

Pro tip: If you want to further simplify the purchase backend code for subscription apps without further maintenance, try out appflow.ai. It’s purchase SDK can maintain your subscription code automatically according to any app store changes, and help you with remote configuration without waiting for approval from app store. There are more features for you to explore.  Create a free account (no credit card required) and explore it today.

AAB File: Everything A Developer Need To Know About

Grow In-app Subscription

START FOR FREE

Grow your subscription apps

with Appflow.ai Analytic Platform!