Dave
Dave

Reputation: 29131

Which APK file should I upload to Firebase App Distribution?

When I build my app with >flutter build apk, it creates five files:

But when I want to upload my app to Firebase App Distribution, it only asks/allows for a single APK file.

Which file should I use and why?

Upvotes: 1

Views: 652

Answers (1)

Ivan Fateev
Ivan Fateev

Reputation: 1061

I would suggest to upload an app-release.apk as it is a universal apk which should fit for all architectures.

You have multiple apks in your output directory since flutter generates stripped apks for each architecture.

Upvotes: 3

Related Questions