Android.mk 745 Bytes
Newer Older
1 2 3
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)

4
LOCAL_MODULE_TAGS := optional
5

6
LOCAL_SRC_FILES := \
7
        $(call all-java-files-under, lib/mapapi)
8 9 10 11 12 13 14 15 16

LOCAL_MODULE := bluetooth.mapsapi

include $(BUILD_JAVA_LIBRARY)

include $(CLEAR_VARS)

LOCAL_MODULE_TAGS := optional

17 18
LOCAL_SRC_FILES := \
        $(call all-java-files-under, src)
19

Tao Liejun's avatar
Tao Liejun committed
20
LOCAL_PACKAGE_NAME := Bluetooth
21
LOCAL_CERTIFICATE := platform
22

23
LOCAL_JNI_SHARED_LIBRARIES := libbluetooth_jni
24
LOCAL_JAVA_LIBRARIES := javax.obex telephony-common bluetooth.mapsapi
25
LOCAL_STATIC_JAVA_LIBRARIES := com.android.vcard
26

27
LOCAL_REQUIRED_MODULES := bluetooth.default
28
LOCAL_MULTILIB := 32
29 30

LOCAL_PROGUARD_ENABLED := disabled
31

32
include $(BUILD_PACKAGE)
33

34
include $(call all-makefiles-under,$(LOCAL_PATH))