Cheryl Ehnman
Cheryl Ehnman

Reputation: 21

How can I export my AAB from Firebase app distribution to Play store?

According to this support article:

When you upload an app bundle to App Distribution, it’s exported to Google Play to generate an APK that's optimized for your tester's device configuration.

But this answer in Firebase documentation:

AAB builds you upload to App Distribution do not appear in your Google Play developer account (this includes App Bundle Explorer and internal app sharing).

I would like the AABs uploaded to Firebase by my CI to be available in the Play Store, but they're not. Which article is correct? Is it possible to make it work? I would prefer to not use Fastlane.

Upvotes: 2

Views: 1170

Answers (1)

Lucas Storti
Lucas Storti

Reputation: 88

Both articles are correct - Firebase needs to export the .aab to Google Play so they can generate the SDK. That doesn't mean you will be able to see the exported .aab in your Google Play Developer account or the console.

You need to upload the .aab to the Google Play Console yourself as a different operation, either by including that in your CI or uploading the .aab manually

Upvotes: 0

Related Questions