Answers for "extract apk flutter"

0

extract apk flutter

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
Posted by: Guest on June-08-2021

Browse Popular Code Answers by Language