还要以NDK提供的two-libs为例子,走一遍多个静态库(.a文件)生成动态库(.so文件)的流程。
1、建立android工程,编写java对应JNI层的本地接口:
package com.example.twolibs;
import android.app.Activity;
import android.widget.TextView;
import android.os.Bundle;
public class TwoLibs extends Activity
{
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
TextView tv = new TextView(this);
int x = 1000;
int y = 42;
// here, we dynamically load the library at runtime
// before calling the native method.
//
int z = add(x, y);
tv.setText( "The sum of " + x + " and " + y + " is " + z );
setContentView(tv);
}
public native int add(int x, int y);
static
{
System.loadLibrary("twolib-second");
}
}
JNI文件夹下的准备预备文件如下,其中.o和.a文件都是用NDK编译生成,具体操作见下:
Android.mk first.c first.o third.a third.h
first.a first.h second.c third.c third.o
2、编写jni层中间层代码second.c,在其中调用first.c中的first(int x,int y)函数及third.c中的test()函数,具体代码如下:

本文详细介绍了如何使用Android NDK,通过多个静态库(.a文件)构建动态库(.so文件)的过程。首先创建Android工程,编写JNI接口,然后在jni层编写中间代码,调用不同静态库的函数。接着利用NDK的gcc和ar工具编译生成静态库,并通过Android.mk文件配置生成动态库。最后提供了两种Android.mk的编写方式。
993

被折叠的 条评论
为什么被折叠?



