摘要:
For the detail of JNI functions:http://www.public.iastate.edu/~java/docs/guide/nativemethod/functions.doc.html#173141.The Definition about JNIEnv is different in C and C++.#if defined(__cplusplus)typedef _JNIEnv JNIEnv; typedef _JavaVM JavaVM; #else typedef const struct JNINativeInterfac... 阅读全文
摘要:
An Android.mk file is written to describe your sources to the build system. More specifically:- The file is really a tiny GNU Makefile fragment that will be parsed one or more times by the build system. As such, you should try to minimize the variables you declare there and do not assume that anythi 阅读全文