I\'m looking for a way to easily debug C code in an Android NDK application using Eclipse. I\'ve read ways to debug the app using gdb or something similar but what I want i
For anyone who's struggling with
LOCAL_LDLIBS := -llog
not working, just add it after each
include $(CLEAR_VARS)
Not sure why, but it worked for me.
Cheers!