3bdd327f85
We continue to compile external/apache-http into ext.jar. This contains a few changes apart fom the classes moving around : - Makefile changes to build docs and api-stubs for now. A future change will revert these changes and remove these classes from stubs and docs. - Hardcode event IDs in legacyerrorstrings to avoid a dependency between the frameworks and apache. These strings are on their way out and will never change anyway. - Remove imports due to {@link} tags and use {@code} instead. - Remove an accidental(?) dependency on apache commons code that's a part of apache-http. bug: 18027885 Change-Id: I51cd038d846ec7d02c283a4541b10a6a9cf62ecf
20 lines
418 B
Makefile
20 lines
418 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-media-protocols
|
|
|
|
LOCAL_JAVA_LIBRARIES += org.apache.http.legacy
|
|
|
|
LOCAL_PROGUARD_ENABLED := disabled
|
|
|
|
include $(BUILD_PACKAGE)
|