開發應用一個關鍵的步驟是調試,對於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看到列印的信息:
本例下載