1LOCAL_PATH:= $(call my-dir) 2 3include $(CLEAR_VARS) 4 5LOCAL_MODULE_TAGS := optional 6 7LOCAL_SRC_FILES := $(call all-java-files-under, src) 8 9LOCAL_PACKAGE_NAME := PhotoEditor 10 11LOCAL_JNI_SHARED_LIBRARIES := libjni_photoeditor 12 13LOCAL_REQUIRED_MODULES := libjni_photoeditor 14 15LOCAL_SDK_VERSION := 11 16 17include $(BUILD_PACKAGE) 18 19ifeq ($(strip $(LOCAL_PACKAGE_OVERRIDES)),) 20include $(call all-makefiles-under, $(LOCAL_PATH)) 21endif 22