From 5a23d5cedf95c9442d9e998380a7940c3229b9bd Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 13 Nov 2021 20:41:11 +0100 Subject: [PATCH] Android: Bump NDK and CMake versions This should make C++20 and std::filesystem work. (Not that we really can use std::filesystem much on Android since it doesn't work with scoped storage...) --- Source/Android/app/build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Source/Android/app/build.gradle b/Source/Android/app/build.gradle index b798bc08a9..9aca6bf771 100644 --- a/Source/Android/app/build.gradle +++ b/Source/Android/app/build.gradle @@ -2,6 +2,7 @@ apply plugin: 'com.android.application' android { compileSdkVersion 30 + ndkVersion "23.0.7599858" compileOptions { // Flag to enable support for the new language APIs @@ -63,7 +64,7 @@ android { externalNativeBuild { cmake { path "../../../CMakeLists.txt" - version "3.10.2" + version "3.18.1" } }