Upgrade CMake version installed with Android-Studio Ubuntu 18.04
Preference -> System Settings -> Android SDK
then choose SDK Tools
tab
Under that tab find Cmake
section check the box which has higher version and uncheck the rest. then apply and re-sync project.
Also from the documentation:
While not a best practice, you may specify the CMake version as the minimum version by adding a
+
to the end of the build.gradle entry, such as3.10.2+
.
This will enable the "or higher" part of your question.
From the Official Documentation,
The SDK Manager includes forked versions of CMake up to version 3.6.4. If you want to use CMake version 3.7 or higher, proceed as follows:
Update Android Studio to 3.0 or higher, and update the Android plugin for Gradle to 3.0.0 or higher.
Download and install CMake 3.7 or higher from the official CMake website.
Specify the CMake version you want Gradle to use in your module's
build.gradle
file:android { externalNativeBuild { cmake { version "3.7.1" } } }
Either add the path to the CMake installation to your PATH environment variable or include it in your project's
local.properties
file, ascmake.dir="path-to-cmake"
. If Gradle is unable to find the version of CMake you specified in yourbuild.gradle
file, you get a build error. If you set this property, Gradle no longer uses PATH to find CMake.
Hope it helps!