0

I have created a react native app for the first time. To publish the app, I have to create an app bundle(.aab).

How do I create an app bundle?

Shreyashi
  • 41
  • 8

1 Answers1

1

This is what you do to generate an AAB bundle file.

cd android
./gradlew bundleRelease

Look at this for pre-requisites. To extract an APK out of the bundle and test it on a device before upload then use the bundletool from Google.

Satheesh
  • 10,998
  • 6
  • 50
  • 93