Extracting MediaCompat classes into a new module
Change-Id: I46d0bbceba9b94828eb94aa3728e4ec61a1f2269
diff --git a/v4/Android.mk b/v4/Android.mk
index bab6f8e..83c86b1 100644
--- a/v4/Android.mk
+++ b/v4/Android.mk
@@ -19,12 +19,18 @@
LOCAL_MODULE := android-support-v4-donut
LOCAL_SDK_VERSION := 4
LOCAL_SRC_FILES := $(call all-java-files-under, donut)
-LOCAL_STATIC_JAVA_LIBRARIES := android-support-annotations android-support-compat
+LOCAL_STATIC_JAVA_LIBRARIES := \
+ android-support-annotations \
+ android-support-media-compat \
+ android-support-compat
LOCAL_JAVA_LANGUAGE_VERSION := 1.7
include $(BUILD_STATIC_JAVA_LIBRARY)
support_module_src_files := $(LOCAL_SRC_FILES)
-support_module_java_libraries := android-support-annotations android-support-compat
+support_module_java_libraries := \
+ android-support-annotations \
+ android-support-media-compat \
+ android-support-compat
# -----------------------------------------------------------------------