diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | Android.mk | 21 |
2 files changed, 22 insertions, 0 deletions
@@ -3,3 +3,4 @@ #*.dex
#*.apk
#resources.ap_
+*~
diff --git a/Android.mk b/Android.mk new file mode 100644 index 0000000..1978aa8 --- /dev/null +++ b/Android.mk @@ -0,0 +1,21 @@ +LOCAL_PATH:= $(call my-dir) + +include $(CLEAR_VARS) + +LOCAL_MODULE_TAGS := optional + +LOCAL_SRC_FILES := $(call all-java-files-under, src) + +LOCAL_RESOURCE_DIR += \ + $(LOCAL_PATH)/res + +LOCAL_PACKAGE_NAME := BlueGps +#LOCAL_CERTIFICATE := platform + +#LOCAL_SDK_VERSION := current + +LOCAL_PROGUARD_ENABLED := disabled + +include $(BUILD_PACKAGE) + +include $(call all-makefiles-under, $(LOCAL_PATH)) |