标签:pil and += library target nal als mod The
 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)
标签:pil and += library target nal als mod The
原文地址:https://www.cnblogs.com/panda-w/p/10922822.html