This app creates a service and UI in separate processes and uses the new MediaSession APIs. This is still a rough work in progress. Change-Id: I9692c95bf2fdbee7255da86dff59044c893e3a1f
19 lines
412 B
Makefile
19 lines
412 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_SRC_FILES := $(call all-subdir-java-files) \
|
|
$(call all-Iaidl-files-under, src)
|
|
|
|
LOCAL_PACKAGE_NAME := OneMedia
|
|
LOCAL_CERTIFICATE := platform
|
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := \
|
|
android-support-v7-appcompat \
|
|
android-support-v7-mediarouter
|
|
|
|
LOCAL_PROGUARD_ENABLED := disabled
|
|
|
|
include $(BUILD_PACKAGE)
|