in file app/build.gradle change version string from this
externalNativeBuild {
cmake {
path file('src/main/cpp/CMakeLists.txt')
version '3.30.3'
}
}
to this, version 3.25 is required by raylib.
externalNativeBuild {
cmake {
path file('src/main/cpp/CMakeLists.txt')
version '3.25.0+'
}
}
Whit this change you specify minimum version requirement same as CMakeLists.txt, and you don't need specifically 3.30.3 version of CMake.
I recommend this change because in my linux distribution version 3.30 is not jet available in the apt repository.
I think this is useful change so you just need a newer version of CMake and not the latest one.
in file app/build.gradle change version string from this
to this, version 3.25 is required by raylib.
Whit this change you specify minimum version requirement same as CMakeLists.txt, and you don't need specifically 3.30.3 version of CMake.
I recommend this change because in my linux distribution version 3.30 is not jet available in the apt repository.
I think this is useful change so you just need a newer version of CMake and not the latest one.