i\'m wrapping a native API to Android by NDK.
But when building it don\'t find the header files.
I have the following structure.
project/jni
I solve it, getting all the headers in a folder and including the following line in the Android.mk
LOCAL_C_INCLUDES := $(LOCAL_PATH)/include-all
This works, but not looks like the best approach.