Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make multiplatform flutter apk release or app bundle for playstore upload

Tags:

flutter

By multiplatform I mean arm64 and arm, using the default way of build a release apk it gives me an apk that works only on arm, but I can make an arm64 version by using the command

flutter build apk --release --target-platform --android-arm

The question is, how to make 1 apk for both platform or an app bundle that will work for play store?

like image 425
Mobius Omniverse Avatar asked Jan 04 '19 03:01

Mobius Omniverse


1 Answers

I think is by using:

flutter build appbundle
like image 131
Omar Sherif Avatar answered Nov 15 '22 04:11

Omar Sherif