A simple question (i am using android NDK r6 with cygwin, but this is a question regarding makefiles and gcc). Suppose that i put under jni/ directory a library under the di
You can add C include paths in you Android.mk using:
common_CFLAGS := -Ijni/mylib/include
Any additional paths require another -I option.