From 2dbf4a04a44e1d741307b09bd32444d401166b65 Mon Sep 17 00:00:00 2001 From: Sascha Willems Date: Mon, 18 Aug 2025 19:26:37 +0200 Subject: [PATCH 1/2] Remove explicit CMake version requirement --- attachments/android/app/build.gradle | 1 - 1 file changed, 1 deletion(-) diff --git a/attachments/android/app/build.gradle b/attachments/android/app/build.gradle index 7fad41cd..b4eb89d9 100644 --- a/attachments/android/app/build.gradle +++ b/attachments/android/app/build.gradle @@ -38,7 +38,6 @@ android { externalNativeBuild { cmake { path "src/main/cpp/CMakeLists.txt" - version "4.0.2" } } From b7f994eb2e2c9fa2cc612f8543618e7c0d3ea0bc Mon Sep 17 00:00:00 2001 From: Sascha Willems Date: Sat, 23 Aug 2025 15:43:59 +0200 Subject: [PATCH 2/2] Make CMake 4.0.2 a min. requirement Removing the requirement does not work with CI --- attachments/android/app/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/attachments/android/app/build.gradle b/attachments/android/app/build.gradle index b4eb89d9..d075fed7 100644 --- a/attachments/android/app/build.gradle +++ b/attachments/android/app/build.gradle @@ -38,6 +38,7 @@ android { externalNativeBuild { cmake { path "src/main/cpp/CMakeLists.txt" + version "4.0.2+" } }