Skip to content

Commit

Permalink
Github actions: Remove android-33-ext4 from build image
Browse files Browse the repository at this point in the history
Github workflow image ubuntu-20.04 version 20230109.1 have added Android
SDK Platform android-33-ext4. Something, possible the gradle version
bundled with qt does not parse this correctly, and sets
androidCompileSdkVersion in android-build/gradle.properties to "ext4"
instead of expected "33". This commit is a quick fix to the problem, so
the build will revert to android-33 wich was used before 20230109.1.
  • Loading branch information
kibidev authored and patrickelectric committed Feb 2, 2023
1 parent 3f9b60f commit 6f636e7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/android_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,9 @@ jobs:
ndk-version: r21e
add-to-path: false

- name: Remove Android SDK android-33-ext4
run: ${ANDROID_SDK_ROOT}/cmdline-tools/latest/bin/sdkmanager --uninstall "platforms;android-33-ext4"

- name: Install ccache
run: sudo apt-get install ccache

Expand Down

0 comments on commit 6f636e7

Please sign in to comment.