summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorJaikumar Ganesh <jaikumar@google.com>2011-12-19 15:54:50 -0800
committerMatthew Xie <mattx@google.com>2012-07-16 18:53:23 -0700
commitff4f17bf64978d0738c66e1b6dd70be8664efc24 (patch)
treecb78f0d4f175cb04fe95f5f2d22801c26bc22362 /Android.mk
parent2a6bf35f603d12e6533a69c773ac258b0e84941f (diff)
downloadandroid_packages_apps_Bluetooth-ff4f17bf64978d0738c66e1b6dd70be8664efc24.tar.gz
android_packages_apps_Bluetooth-ff4f17bf64978d0738c66e1b6dd70be8664efc24.tar.bz2
android_packages_apps_Bluetooth-ff4f17bf64978d0738c66e1b6dd70be8664efc24.zip
Initial commit for new Bluetooth stack interface.
1. Changes to Android.mk file 2. changes to make the process persistent. This is temporary. 3. Addition of new java and jni classes. Change-Id: I2453c7a1a475c66bf52f3a84cd8beb12dd37b87a
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk9
1 files changed, 7 insertions, 2 deletions
diff --git a/Android.mk b/Android.mk
index 12f4db5c2..996453ac7 100644
--- a/Android.mk
+++ b/Android.mk
@@ -3,13 +3,18 @@ include $(CLEAR_VARS)
LOCAL_MODULE_TAGS := optional
-LOCAL_SRC_FILES := $(call all-subdir-java-files)
+LOCAL_SRC_FILES := \
+ $(call all-java-files-under, src)
LOCAL_PACKAGE_NAME := Bluetooth
+LOCAL_CERTIFICATE := platform
+LOCAL_JNI_SHARED_LIBRARIES := libbluetooth_jni
LOCAL_JAVA_LIBRARIES := javax.obex
LOCAL_STATIC_JAVA_LIBRARIES := com.android.vcard
-LOCAL_CERTIFICATE := platform
+
+LOCAL_PROGUARD_ENABLED := disabled
include $(BUILD_PACKAGE)
+include $(call all-makefiles-under,$(LOCAL_PATH))