Home > Software engineering >  How can I convert an Android application to aab format to upload my application to Google Play
How can I convert an Android application to aab format to upload my application to Google Play

Time:10-31

I made an app using Android Studio, but when I upload it to Google Play, it asks me for an aab file. like this image

CodePudding user response:

In Android Stuido go to Build -> Generate signed bundle/APK and select Android application bundle.

after that, enter all your information and paths and your aab file will be generated.

for more information look at screenshot

The process will leave you with a built and signed release bundle that’s ready for upload to the Play Store.

for more detailed steps go here.

  • Related