1 LOCAL_PATH := $(call my-dir) 2 include $(CLEAR_VARS) 3 4 # Include all the java files. 5 LOCAL_SRC_FILES := $(call all-java-files-under, src) 6 7 LOCAL_SDK_VERSION := 8 8 9 # The name of the jar file to create. 10 LOCAL_MODULE := xmp_toolkit 11 12 # Build a static jar file. 13 include $(BUILD_STATIC_JAVA_LIBRARY) 14