Android NDK search headers recursively
android, android-ndk, c++, header, path
Solution
Add header file path in the android.mk file
LOCAL_C_INCLUDES := $(LOCAL_PATH)/include
LOCAL_C_INCLUDES += <PATH>/CPPCore/Model
checkout some links from android forum, it may help:
https://groups.google.com/forum/?fromgroups=#!topic/android-ndk/-_scQd5leqo
Problem
how I can do the NDK search the headers in all folder? for example it works: ``` #include "../../../CPPCore/Model/User.h" ``` but it no: ``` #include "User.h" ```