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