I need to add C/C++ code in my Android program for which I needed LLDB, CMake, and NDK. I found LLDB and NDK in SDK manager, but CMake is missing from there. I tried manuall
For me what solved as taking off the "version" option in my gradle
externalNativeBuild { cmake { path "src/main/cpp/CMakeLists.txt" //version was here } }