📜  flutter release apk 命令 - 任何代码示例

📅  最后修改于: 2022-03-11 14:58:31.207000             🧑  作者: Mango

代码示例6
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