Add POReceiveBarcodeHandler to support barcode/po-receive/ endpoint (… #334
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Build Android version of the app | |
name: Android | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '11' | |
- name: Setup Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
flutter-version: '3.13.0' | |
channel: 'stable' | |
- run: flutter --version | |
- name: Setup Gradle | |
uses: gradle/[email protected] | |
with: | |
gradle-version: 7.6 | |
- name: Collect Translation Files | |
run: | | |
cd lib/l10n | |
python3 collect_translations.py | |
- name: Build for Android | |
run: | | |
flutter pub get | |
cp lib/dummy_dsn.dart lib/dsn.dart | |
flutter build apk --debug |