Skip to content

Uses WASM for Web.

Uses WASM for Web. #69

Workflow file for this run

name: Build
on: [push]
jobs:
build:
name: Build APK
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-java@v1
with:
java-version: "12.x"
- uses: subosito/flutter-action@v1
with:
flutter-version: "3.19.x"
channel: "stable"
- run: flutter pub get
working-directory: ./example
- run: flutter build apk --debug
working-directory: ./example