A game inspired by Bomberman and Chess.
- Add Flutter to your machine
- Open this project folder with Terminal/CMD
- Ensure there's no cache/build leftover by running
flutter clean
in the Terminal - Run in the Terminal
flutter packages get
- Run in the Terminal
flutter packages pub run build_runner build --delete-conflicting-outputs
- Open Android Emulator
- Run
flutter run
- Run
flutter build apk
or Runflutter build apk --split-per-abi
for split the APK - The apk will be saved under this location:
[project]/build/app/outputs/flutter-apk/
- We can also build appbundle (.aab) by running this command:
flutter build appbundle
For more information, check out the official documentation