加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build_prod_apk.sh 712 Bytes
一键复制 编辑 原始数据 按行查看 历史
xinyu 提交于 2024-03-17 20:15 . flutter打包版本1.0.4
#fvm flutter build apk -t lib/main.dart --flavor stage --target-platform android-arm,android-arm64 \
if command -v fvm >/dev/null 2>&1; then
fvm flutter build apk -t lib/main.dart --target-platform android-arm,android-arm64
else
flutter build apk -t lib/main.dart --target-platform android-arm,android-arm64
fi
###
# @Descripttion:
# @version:
# @Author: congsir
# @Date: 2022-11-14 18:19:43
# @LastEditors:
# @LastEditTime: 2022-11-24 09:56:33
###
# --obfuscate --split-debug-info=build/app/outputs/dist/
cd build/app/outputs/flutter-apk/
# mv "app-prod-release.apk" "oiocns-prod.apk"
if command -v start >/dev/null 2>&1; then
start .
elif command -v open >/dev/null 2>&1; then
open .
fi
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化