Skip to content
Advertisement

CMake could not find JNI

I created a new Android Studio Project with C++ support and did not add anything to it. The project builds, compiles and runs with CMake. I then added the following two lines of code to CMakeLists.txt at the bottom of the file and I get a CMake build error.

JavaScript

And this is the error I get when building the project

JavaScript

CMake runs when being called form the command line, but fails inside Android Studio for some reason and I am not sure why.

EDIT 1

Here is the CMakeOutput.log file

EDIT 2

This is all that is in CMakeLists.txt file. It compiles in cmd with the command cmake.

JavaScript

This is the cmd output

JavaScript

When I try to add it compile it in Android Studio using gradle I get the following error on Windows 10 pro 64 bit

JavaScript

Advertisement

Answer

As the CMake version bundled with Android tries to tell you, it can’t find the JNI package because some parts were missing:

missing: JAVA_AWT_LIBRARY JAVA_JVM_LIBRARY JAVA_INCLUDE_PATH2 JAVA_AWT_INCLUDE_PATH

Checking the documentation for FindJNI (https://cmake.org/cmake/help/latest/module/FindJNI.html) these variables are set to the locations of libraries and headers not shipped with the Android version of JNI (to little surprise, Android does not included the AWT library for instance). When running find_package(JNI REQUIRED), the FindJNI code checks if these variables are set and if not, issues an error.

A workaround is to set these variables yourself, before calling find_package:

JavaScript

Be aware though, that your code will only be able to use jni.h and its functionality: if it tries to access any other part of the JNI package it will fail (probably at compile time) because essentially, you have tricked CMake into thinking that the entire package was found, when in reality only a part of it exists in the Android setup.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement