任何人都可以告诉我一个.so文件,因为我们需要在app中使用calla jni
方法吗? .so文件包含C
中的实现方法。
提前谢谢。
答案 0 :(得分:4)
使用此代码..
public class NativeLib {
static {
System.loadLibrary("ndk_demo");
}
/**
* Adds two integers, returning their sum
*/
public native int add( int v1, int v2 );
/**
* Returns Hello World string
*/
public native String hello();
}
了解更多信息.. http://marakana.com/forums/android/examples/49.html