Previously the sample player relied on implementation details of FileDescriptor.toString() to get the low level int file descriptor, which changed in N release. This updates the sample player to use a more reliable method. bug: 26422357 Change-Id: I73cc759542994a352eae646a3872ee1125445739
20 lines
411 B
Makefile
20 lines
411 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
|
|
|
LOCAL_DEX_PREOPT := false
|
|
|
|
LOCAL_PACKAGE_NAME := WidevineSamplePlayer
|
|
|
|
LOCAL_JAVA_LIBRARIES := org.apache.http.legacy
|
|
|
|
LOCAL_SDK_VERSION := current
|
|
|
|
include $(BUILD_PACKAGE)
|
|
|
|
# Use the following include to make our test apk.
|
|
include $(call all-makefiles-under,$(LOCAL_PATH))
|