This provides a mechanism for developing applications to work with USB accessories in versions of android prior to the introduction of the android.hardware.UsbManager APIs. Applications should link against the com.google.android.usb library to use this support. Change-Id: I48ff80467fd9a6667aa84a758eca754132f546b9 Signed-off-by: Mike Lockwood <lockwood@android.com>
16 lines
343 B
Makefile
16 lines
343 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_TAGS := tests
|
|
|
|
LOCAL_SRC_FILES := $(call all-subdir-java-files)
|
|
|
|
LOCAL_PACKAGE_NAME := AccessoryChatGB
|
|
|
|
LOCAL_JAVA_LIBRARIES := com.google.android.usb
|
|
|
|
# Force an old SDK version to make sure we aren't using newer UsbManager APIs
|
|
LOCAL_SDK_VERSION := 8
|
|
|
|
include $(BUILD_PACKAGE)
|