summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorCraig Lafayette <craiglafa@google.com>2015-03-09 16:01:35 -0400
committerCraig Lafayette <craiglafa@google.com>2015-04-02 17:07:31 -0400
commit22f419934df0da4134f45eeb6dbd83301813853f (patch)
treead778925bfd75a4c17cedb2c7bbac9bc2a482ba8 /Android.mk
parent3e575d998d674943f35285475aea3c0c5dd00a3d (diff)
downloadandroid_packages_apps_ManagedProvisioning-22f419934df0da4134f45eeb6dbd83301813853f.tar.gz
android_packages_apps_ManagedProvisioning-22f419934df0da4134f45eeb6dbd83301813853f.tar.bz2
android_packages_apps_ManagedProvisioning-22f419934df0da4134f45eeb6dbd83301813853f.zip
Add bluetooth provisioning library to ManagedProvisioning.
This library is used for two purposes: - If no wifi is available on the device that is being provisioned, it can use the programmer devices wifi as a proxy - Status updates can be sent to the programmer device via bluetooth. Bug: 20001077 Change-Id: I15642bc634959dda2385b352532163f5b69597e7
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk7
1 files changed, 6 insertions, 1 deletions
diff --git a/Android.mk b/Android.mk
index 429fc810..3645a91a 100644
--- a/Android.mk
+++ b/Android.mk
@@ -3,12 +3,16 @@ include $(CLEAR_VARS)
LOCAL_MODULE_TAGS := optional
-LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4
+LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4 \
+ ManagedProvisioningComm
LOCAL_SRC_FILES := $(call all-java-files-under, src)
LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
+LOCAL_PROTOC_OPTIMIZE_TYPE := nano
+LOCAL_PROTOC_FLAGS := --proto_path=$(LOCAL_PATH)/protos/
+
LOCAL_PACKAGE_NAME := ManagedProvisioning
LOCAL_CERTIFICATE := platform
LOCAL_PRIVILEGED_MODULE := true
@@ -17,3 +21,4 @@ include frameworks/opt/setupwizard/navigationbar/common.mk
include $(BUILD_PACKAGE)
+include $(call all-makefiles-under,$(LOCAL_PATH))