Build project
Build with Docker
The easiest way to build project is to use our pre-built docker images with Flutter SDK. In this case you don't need to set up build environment by yourself.
First install Docker CE (Linux) or Docker Desktop (macOS, Windows). In case of Docker Desktop, don't forget to open GUI and start engine.
Then open terminal in project root and run:
-
On macOS and Linux:
./script/docker_build.sh -
On Windows:
.\script\docker_build.bat
After building, you can find APK here:
dist/android/release/roc-droid-<version>.apk
Build without Docker
First follow instructions to set up build environment:
Then open terminal in project root and run:
flutter build apk --release
After building, you can find APK here:
dist/android/release/roc-droid-<version>.apk