Using existing shared library (.so) in Android application
问题 I have the follow scenario to work on. I was given a shared library (libeffect.so) to use in a Android project i am working for a client. I dont have the shared library source code, i have just the .so file with me. The library is pre-compiled to work on android devices. Along with the shared library I have the method signature public static native void doEffect(int param1, IntBuffer intBuffer); So now I have some questiosn on how to make the call to this native method, of source, if this is