A simple example of calling native methods via jni on the android platform.
实现过程:(本例采用 Android.mk + application.mk + ndk-build 方式实现, 在AndroidStudio下使用CMake + CMakeLists.txt方式将更加简便)
public class JniMethod {
static {
System.loadLibrary("JniMethod");
}
public static native String getABI();
}