Skip to content

Merge branch 'zonble-patch-1' #59

Merge branch 'zonble-patch-1'

Merge branch 'zonble-patch-1' #59

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.10.x" # you can use 1.7
channel: "stable" # optional, default to: 'stable'
- run: flutter pub get
working-directory: ./example
- run: flutter build apk --debug
working-directory: ./example