From 7b6cdbfc6edf32c1719f0702abe1ec0a2253b9e8 Mon Sep 17 00:00:00 2001 From: fuzzard Date: Sat, 21 May 2022 07:46:51 +1000 Subject: [android] refactor target min and compile SDK to single cmake set variables Provides a single location to set required values for android target SDK and minimum sdk --- cmake/platform/android/android.cmake | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'cmake') diff --git a/cmake/platform/android/android.cmake b/cmake/platform/android/android.cmake index 7e3300426d..e41dc24e22 100644 --- a/cmake/platform/android/android.cmake +++ b/cmake/platform/android/android.cmake @@ -1,2 +1,7 @@ set(PLATFORM_REQUIRED_DEPS LibAndroidJNI OpenGLES EGL Zip) set(APP_RENDER_SYSTEM gles) + +# Store SDK compile version +set(TARGET_SDK 29) +# Minimum supported SDK version +set(TARGET_MINSDK 21) -- cgit v1.2.3 From c9a50f006d2db466e52b4e67eba16e2b30eafdb6 Mon Sep 17 00:00:00 2001 From: fuzzard Date: Mon, 9 May 2022 14:05:20 +1000 Subject: Android SDK 30 and All files access permission --- cmake/platform/android/android.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cmake') diff --git a/cmake/platform/android/android.cmake b/cmake/platform/android/android.cmake index e41dc24e22..8250d49f81 100644 --- a/cmake/platform/android/android.cmake +++ b/cmake/platform/android/android.cmake @@ -2,6 +2,6 @@ set(PLATFORM_REQUIRED_DEPS LibAndroidJNI OpenGLES EGL Zip) set(APP_RENDER_SYSTEM gles) # Store SDK compile version -set(TARGET_SDK 29) +set(TARGET_SDK 30) # Minimum supported SDK version set(TARGET_MINSDK 21) -- cgit v1.2.3