Skip to content Skip to sidebar Skip to footer

Opencv On Android - Headers; No Such File/directory

so I am new to using the JNI for Android so sorry in advance if this is something silly. I have installed the SDK and in Eclipse have added it as a library for the project. After

Solution 1:

Do you have a so-called "Application.mk" file in your "jni" directory? If you don't, try to create it with, for instance, the following code:

Application.mk:

APP_STL := gnustl_static
APP_CPPFLAGS := -frtti -fexceptions
APP_ABI := armeabi-v7a
APP_PLATFORM := android-8

Hope this will help.

Post a Comment for "Opencv On Android - Headers; No Such File/directory"