I recently installed Android Studio on Ubuntu 18.04 to do some native C++ development for Android. While compiling a project that required cmake 3.9 or higher (due to cmake dependencies) I found that the cmake version installed by Android Studio was only version 3.6. Is there a clean way to upgrade the cmake version installed with Android Studio via the SDK Manager?
I'm running Android Studio version 3.1.3 and Installed cmake from SDK Manager -> SDK tools.
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, as cmake.dir="path-to-cmake"
. If Gradle is unable to find the version of CMake you specified in your build.gradle
file, you get a build error. If you set this property, Gradle no longer uses PATH to find CMake.
Hope it helps!