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
