Hi, Guys
I build *.so from c-code by NDK with function:
extern "C" void test();
I try to add *. so to project in lib/armeabi-v7a
and call it from C#:
[DllImport("test.so")]
public static extern void test();
But I got ddlnotfoundexception...
I try to find name of function "test" in test.so from texteditor, but cannot find...
Could please help, or provide example for building *.so?