I've got a very simplistic application:
#include <vector>
void android_main(struct android_app* state)
{
}
When I build it, I get the following error:
test/jni/main.c:14:18: error: vector: No such file or directory
How the hell do I include STL header files? I've found stlport, and I can see the header files exist in it's directory, but how do include them?
Edit: My Application.mk file has the following line:
APP_STL := stlport_static