Help Instance Help

Building

If you would like to build the app from source, please make sure you are building for a support platform:

  1. Windows

  2. Android

  3. iOS (+iPadOS)

Other platforms may be supported, but they are untested and unstable.

Download Flutter SDK

Go to flutter.dev and follow the instructions to download and setup the Flutter SDK for your platform.

Download the source code

This steps requires that you have git installed!

Run

git clone https://github.com/rebels2638/ScoutingApp2024

Then move into the cloned directory with

cd ScoutingApp2024

Building for Windows

Run

flutter build windows --release

The resultant artifacts can be found in build/windows/x64/runner/Release

Building for Android

Make sure you have Android Studio installed! You can find it here

After that, you can either build an app bundle or an APK:

flutter build apk --release --no-tree-shake-icons

Or

flutter build aab --release --no-tree-shake-icons

The resultant artifacts can be found in build/app/outputs/

Building for iOS/iPadOS

Make sure you have XCode installed. You can more information here

After that you can run:

flutter build ipa --release
Last modified: 24 March 2024