chore: Update Gradle and Java versions to 17 #26
Workflow file for this run
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
name: "Build iOS & Android" | |
on: | |
push: | |
branches: | |
- test | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: "stable" | |
- name: Check Java and environment | |
run: | | |
java -version | |
echo $JAVA_HOME | |
which java | |
- name: Get dependencies | |
run: flutter pub get | |
- name: Build Android APK | |
run: flutter build apk --release |