从官方地址下载到linux硬盘上
http://dl.google.com/android/ndk/android-ndk-r6b-linux-x86.tar.bz2
解压缩之..你可以拷贝到任意目录下,纯绿色无污染
下面来说如何使用
Here's the general outline of how you work with the NDK tools:
- Place your native sources under
<project>/jni/...
- Create
<project>/jni/Android.mk
- Optional: Create
<project>/jni/Application.mk
. - Build your native code by running the 'ndk-build' script from your project's directory. It is located in the top-level NDK directory:cd <project>
<ndk>/ndk-build
翻译一下
1.把你的本地代码放在项目根目录的jni目录下
2.在jni目录下新建一个Android.mk用来编译本地代码 就是jni的makefile
3. Android.mk 可以写也可以不写.
4.编译之...
到你项目目录下
然后输入ndk 根目录下的ndk-build
编译完成会把.so动态库拷贝到libs 目录下...
完成之后就可以在sdk 中使用了so作为资源的一种被sdk引用.sdk不需要做什么特别的处理.