1 LOCAL_PATH:= $(call my-dir) 2 3 ######################################## 4 # NCI Configuration 5 ######################################## 6 include $(CLEAR_VARS) 7 8 LOCAL_MODULE_TAGS := optional 9 10 LOCAL_SRC_FILES := \ 11 $(call all-java-files-under, src) 12 13 LOCAL_SRC_FILES += \ 14 $(call all-java-files-under, nci) 15 16 LOCAL_PACKAGE_NAME := NfcNci 17 LOCAL_CERTIFICATE := platform 18 19 LOCAL_JNI_SHARED_LIBRARIES := libnfc_nci_jni 20 21 LOCAL_PROGUARD_ENABLED := disabled 22 23 include $(BUILD_PACKAGE) 24 25 include $(call all-makefiles-under,$(LOCAL_PATH)) 26