summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Android.mk14
1 files changed, 14 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
new file mode 100644
index 0000000..51c982a
--- /dev/null
+++ b/Android.mk
@@ -0,0 +1,14 @@
+LOCAL_PATH := $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES := $(call all-java-files-under, library/src)
+LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/library/res
+LOCAL_MANIFEST_FILE := library/AndroidManifest.xml
+
+LOCAL_JAVA_LIBRARIES := \
+ android-support-v4
+
+LOCAL_MODULE := ActionBarSherlock
+LOCAL_MODULE_TAGS := optional
+LOCAL_SDK_VERSION := 16
+include $(BUILD_STATIC_JAVA_LIBRARY)