diff options
author | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2023-10-10 19:29:18 +0100 |
---|---|---|
committer | Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> | 2023-10-10 19:29:18 +0100 |
commit | 78d3062b68988f5094c61a845be756788933c752 (patch) | |
tree | 8b4e1bce1126e34f62c16ec493572ae1531ac00d /ci | |
parent | 04265ba9378efbd4c35b33390b1e5cf246d420a9 (diff) |
ci: Install Android API 31 platform as Qt expects
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/test/01_base_install.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/test/01_base_install.sh b/ci/test/01_base_install.sh index 424dca52dc..c4095e4c1a 100755 --- a/ci/test/01_base_install.sh +++ b/ci/test/01_base_install.sh @@ -98,7 +98,7 @@ if [ -n "$ANDROID_HOME" ] && [ ! -d "$ANDROID_HOME" ]; then fi mkdir -p "$ANDROID_HOME" unzip -o "$ANDROID_TOOLS_PATH" -d "$ANDROID_HOME" - yes | "${ANDROID_HOME}"/cmdline-tools/bin/sdkmanager --sdk_root="${ANDROID_HOME}" --install "build-tools;${ANDROID_BUILD_TOOLS_VERSION}" "platform-tools" "platforms;android-${ANDROID_API_LEVEL}" "ndk;${ANDROID_NDK_VERSION}" + yes | "${ANDROID_HOME}"/cmdline-tools/bin/sdkmanager --sdk_root="${ANDROID_HOME}" --install "build-tools;${ANDROID_BUILD_TOOLS_VERSION}" "platform-tools" "platforms;android-31" "platforms;android-${ANDROID_API_LEVEL}" "ndk;${ANDROID_NDK_VERSION}" fi git config --global ${CFG_DONE} "true" |