From aba17178ff5c26385779469ee517031a12784a89 Mon Sep 17 00:00:00 2001 From: Marijn Suijten Date: Wed, 6 Dec 2023 14:37:28 +0100 Subject: [PATCH] android-sdk: No longer install removed `patcher;v4` The CI is failing on the `openxr-android` image because `patcher;v4` does not exist anymore. While it is unclear why this is gone, if there's a replacement, or if this will even succeed, let's at least try to build the image and see if it has any impact on our runtime. --- install-android-sdk.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/install-android-sdk.sh b/install-android-sdk.sh index 5667285..7451c15 100755 --- a/install-android-sdk.sh +++ b/install-android-sdk.sh @@ -41,9 +41,6 @@ echo y | $SDKMANAGER "ndk;${ANDROID_NDK_VERSION}" >> /dev/null echo "Installing CMake ${ANDROID_CMAKE_VERSION}" echo y | $SDKMANAGER "cmake;${ANDROID_CMAKE_VERSION}" >> /dev/null -echo "Installing the Android 'patcher'" -echo y | $SDKMANAGER "patcher;v4" >> /dev/null - echo "Installing the Android build tools ${ANDROID_BUILD_TOOLS}" echo y | $SDKMANAGER "build-tools;${ANDROID_BUILD_TOOLS}" >> /dev/null