mirror of
https://github.com/inventree/inventree-app.git
synced 2025-06-14 03:05:32 +00:00
* Build file changes Lots of changes required to meet compatibility of new mobile_scanner lib * Increase build memory * Refactor camera controller - Use MobileScanner now - Much better UX / feedback * Cleanup * Move test sheet file * Update release notes * Move actions to floating action buttons * Tweak deps * tweak github actions * Updates
41 lines
826 B
YAML
41 lines
826 B
YAML
# 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: '17'
|
|
- name: Setup Flutter
|
|
uses: subosito/flutter-action@v2
|
|
with:
|
|
flutter-version: '3.32.2'
|
|
channel: 'stable'
|
|
- run: flutter --version
|
|
- name: Setup Gradle
|
|
uses: gradle/gradle-build-action@v2.4.2
|
|
with:
|
|
gradle-version: 8.7
|
|
- name: Collect Translation Files
|
|
run: |
|
|
cd lib/l10n
|
|
python3 collect_translations.py
|
|
- name: Build for Android
|
|
run: |
|
|
flutter pub get
|
|
flutter build apk --debug
|