Answers for "flutter how to build release apk"

11

flutter apk build

flutter build apk --split-per-abi
Posted by: Guest on November-10-2020
0

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

Code answers related to "flutter how to build release apk"

Browse Popular Code Answers by Language