How to Generate Android App Bundle (Signed and Debug)

App Bundle reduces the number of Android apks that needs to be generated, released and maintained. It is the new format that is build and uploaded to the Google Play Store. Google takes the bundle, generates appropriate apks based on the device architectures, screen densities, device languages and serves to the device as a part of Dynamic Delivery.

As a first step, lets generate a debug version of the app bundle and after that lets take a look at generating a released version of the app bundle. Generated app bundles are in .aab format.

Generate Debug Version:

1) Click on the Build menu option at the top, select the Build Bundle(s)/APK(s) and click Build Bundle(s).

build-debug-bundle

Debug app bundle is generated and saved to ../app/build/outputs/bundle/debug/app.aab.

Generate Release Version:

1) Similar to the step followed while generating a debug version, click on the Build menu option.

select-generate-signed-bundle-apk

2) It opens a dialog with options to build a bundle or an apk. Select the Android App Bundle option and click Next.

select-android-app-bundle

3) If you already have an existing key, click choose existing and select the file location from local disk, otherwise click create new.

generate-signed-bundle-apk

4) Fill the fields necessary to create a key store. Select a path where the created key store needs to be saved. There are two passwords that needs to be generated one is the key store password below the key store path and a key password below the key alias.

Give any alias name for the key and validity is the number of years this certificate is valid. At least one field under the certification section needs to be filled to generate the certificate. Now, Click OK.

create-new-key-store

5) If you just created the key or earlier selected the option to Remember passwords, all the fields are auto populated. If not, enter the key store password and key password and click Next.

generate-signed-bundle-apk-values

6) Click Finish to build the bundle.

finish-generate-signed-bundle-apk

Release app bundle is generated, saved to ../app/release/app.aab and is ready to be uploaded to the Google Play Store.

Popular posts from this blog

How to Read Metadata from AndriodManifest File

Mr Phone - Find The Next Best Phone You Want To Buy

Add Spacing to Recycler View Linear Layout Manager Using Item Decoration

Add Options Menu to Activity and Fragment

Create Assets Folder, Add Files and Read Data From It