I have a C++ project which I build using android NDK-7 and also successfully loaded this shared library into my android application.
But while I am calling one of the native function application get crashed.
Actually I find some code in the library is not working.
ruuid_t u;
uuid_create(&u);
uuid_create_sha1_from_name(&u, NameSpace_DNS,pv,12);
So, I am thinking is there any way to set NDK level in android application (application properties) in eclipse.
Thanks in advance.