开发应用一个关键的步骤是调试,对于NDK的C代码调试有很多种方法,
修改一下two-lib 的例子 ,使用first.c 中的first 函数实现一个加法计算器
这里我们想在调用first(int x,int y) 显示出传入的x ,y 值。Android NDK 中提供了一个Log库,其头文件为android/log.h ,可以提供Androd Java代码中的Log功能,也是可以在LogCat中打印信息。
具体方法如下:
1. 修改first.c ,添加合适的打印语句
#include "first.h" #include <android/log.h> int first(int x, int y) { __android_log_print(ANDROID_LOG_INFO, "MYPROG", "x = %d, y =%d", x,y); return x + y; }
2. 修改android.mk 文件,添加需要链接的Log库
LOCAL_PATH:= $(call my-dir)
# first lib, which will be built statically
#
include $(CLEAR_VARS)
LOCAL_MODULE := libtwolib-first
LOCAL_SRC_FILES := first.c
include $(BUILD_STATIC_LIBRARY)
# second lib, which will depend on and include the first one
#
include $(CLEAR_VARS)
LOCAL_MODULE := libtwolib-second
LOCAL_SRC_FILES := second.c
LOCAL_LDLIBS := -llog
LOCAL_STATIC_LIBRARIES := libtwolib-first
include $(BUILD_SHARED_LIBRARY)
然后就可以编译Native C代码,运行这个例子,可以在LogCat看到打印的信息:
本例下载