Answers for "flutter apk run'"

3

build apk flutter command

flutter clean
flutter build apk
Posted by: Guest on November-28-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

Browse Popular Code Answers by Language