flutter打包命令

flutter build apk --obfuscate --split-debug-info=debugInfo --target-platform android-arm,android-arm64,android-x64 --split-per-abi

注:现在的手机都是arm64位的,很多pda手持机可能是arm32位的,windows电脑的模拟器是x86的

如果报错This application cannot tree shake icons fonts. It has non-constant instances of IconData at the following locations:

则在命令后加上

 --no-tree-shake-icons

 

flutter build apk --obfuscate --split-debug-info=debugInfo --target-platform android-arm,android-arm64,android-x64 --split-per-abi --no-tree-shake-icons

posted @ 2022-03-14 14:42  精神病人王大夫  阅读(824)  评论(0)    收藏  举报