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