Android cmake compatible with newer versions of NDK?

I am interested in porting the cmake script to Android, so far I have found this project , the problem is that it looks like it is really old, also there are only links to the NDK r5b in the installation files, which is a really really old release.

Are there alternative build scripts for Android?

+7
source share
1 answer

The documentation was not updated from the very beginning, but in fact the toolchain file from this project supports all NDK releases from r5 to r8b and works with r8c when it clearly indicates its location.

If you need full support for the NDK r8c functions, including the Clang compiler, then you can get the latest version of CMake toolkit from my fork on GitHub: https://github.com/taka-no-me/android-cmake

+12
source

All Articles