add android sdk as an additional step
Some checks failed
Test, Build and Release web / Build Web (push) Has been cancelled
Test, Build and Release apk / Build APK (push) Failing after 2m14s

This commit is contained in:
Remy Moll 2024-05-04 12:21:10 +02:00
parent 9bf047442e
commit 55ec2d15a1

View File

@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: https://github.com/actions/setup-java@v4 - uses: https://github.com/actions/setup-java@v4
with: with:
java-version: '12' java-version: '17'
distribution: 'zulu' distribution: 'zulu'
- uses: https://github.com/subosito/flutter-action@v2 - uses: https://github.com/subosito/flutter-action@v2
with: with:
@ -20,6 +20,8 @@ jobs:
flutter-version: 3.19.6 flutter-version: 3.19.6
cache: true cache: true
- run: flutter config --no-cli-animations - run: flutter config --no-cli-animations
- name: Setup Android SDK
uses: https://github.com/android-actions/setup-android@v3
- run: flutter pub get -v - run: flutter pub get -v
# - run: flutter test # - run: flutter test
- run: flutter build apk --debug --split-per-abi - run: flutter build apk --debug --split-per-abi