Increase tested Android API level (#5253)

Vulkan was introduced in Android API 24.
Test that.

The Android NDK drops support for very old APIs.
This commit is contained in:
David Neto 2023-05-31 16:55:43 -04:00 committed by GitHub
parent c7e436921a
commit ec244c8598
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
APP_ABI := all
APP_BUILD_SCRIPT := Android.mk
APP_STL := c++_static
APP_PLATFORM := android-9
APP_PLATFORM := android-24
NDK_TOOLCHAIN_VERSION := 4.9

View File

@ -164,7 +164,7 @@ elif [ $TOOL = "cmake-android-ndk" ]; then
echo $(date): Starting build...
cmake -DCMAKE_BUILD_TYPE=Release \
-DANDROID_NATIVE_API_LEVEL=android-16 \
-DANDROID_NATIVE_API_LEVEL=android-24 \
-DANDROID_ABI="armeabi-v7a with NEON" \
-DSPIRV_SKIP_TESTS=ON \
-DCMAKE_TOOLCHAIN_FILE="$ANDROID_NDK_HOME/build/cmake/android.toolchain.cmake" \