Update the cmake version to be a minimum value

This commit is contained in:
Morgan Pretty 2024-02-07 15:10:17 +11:00
parent 78436366a4
commit 13fea6521c
2 changed files with 3 additions and 2 deletions

View File

@ -6,7 +6,8 @@ local version_info = {
image: docker_base + 'android', image: docker_base + 'android',
commands: [ commands: [
'cmake --version', 'cmake --version',
'/usr/lib/android-sdk/tools/bin/sdkmanager --list | awk "/Installed/{flag=1; next} /Available/{flag=0} flag"' 'apt-show-versions android-sdk',
'apt-show-versions android-ndk'
] ]
}; };

View File

@ -26,7 +26,7 @@ android {
externalNativeBuild { externalNativeBuild {
cmake { cmake {
path "src/main/cpp/CMakeLists.txt" path "src/main/cpp/CMakeLists.txt"
version "3.22.1" version "3.22.1+"
} }
} }
compileOptions { compileOptions {