1LOCAL_PATH:= $(call my-dir) 2include $(CLEAR_VARS) 3 4LOCAL_SRC_FILES := \ 5 $(call all-java-files-under, src) 6 7LOCAL_PACKAGE_NAME := VideoEditor 8 9LOCAL_JAVA_LIBRARIES := 10 11LOCAL_PROGUARD_FLAGS := -include $(LOCAL_PATH)/proguard.flags 12 13LOCAL_PROGUARD_ENABLED := disabled 14 15#LOCAL_SDK_VERSION := current 16 17include $(BUILD_PACKAGE) 18 19################################################## 20include $(CLEAR_VARS) 21 22LOCAL_PREBUILT_STATIC_JAVA_LIBRARIES := 23 24include $(BUILD_MULTI_PREBUILT) 25 26include $(call all-makefiles-under, $(LOCAL_PATH)) 27