Answers for "flutter app release command"

6

flutter release apk command

flutter build apk --release
Posted by: Guest on January-30-2022
6

flutter app release

flutter build appbundle
Posted by: Guest on July-17-2020
-1

flutter release apk command

For apk (Android) you need to run the command :
	flutter build apk --release
If you want to split the apks per abi (Split Apk) then run:
	flutter build apk --target-platform android-arm,android-arm64,android-x64 --split-per-abi
For ipa (iOS) you need to run the command :
	flutter build ios --release
Posted by: Guest on October-21-2021

Browse Popular Code Answers by Language