This is required because these makefiles contain a module that's building agains the "current" SDK and will need to add an explicit compile time dependency on the apache API. Note that no runtime dependency is needed because the app targets SDK version 12 (?!!). bug: 18027885 Change-Id: I37587b91f9c52f88a8becce0449ac9b24a77fdad
18 lines
384 B
Makefile
18 lines
384 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
|
|
|
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))
|