Android.mk

LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)

# This is the target being built.
LOCAL_MODULE:= libled_jni


# All of the source files that we will compile.
LOCAL_SRC_FILES:= \
led_jni.cpp

# All of the shared libraries we link against.
LOCAL_SHARED_LIBRARIES := \
libutils \
libhardware #因为jni调用:hw_get_module方法,所以需要连接库:libhardware
# Also need the JNI headers.
LOCAL_C_INCLUDES += \
$(JNI_H_INCLUDE)

LOCAL_MODULE_TAGS := optional
include $(BUILD_SHARED_LIBRARY)

Android.mk

上一篇:effective c++ 条款6 如果不想要就要告诉大家


下一篇:Java 集合系列 10 Hashtable详细介绍(源码解析)和使用示例