Reputation: 29131
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
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