Root documents must be added by RootScanner. Previously DocumentLoader unintentionally tries to load unmapped root documents, which causes crash. BUG=27731902 Change-Id: I8674473d80d6e7f758f6636d30148f5d2118bc25
19 lines
562 B
Makefile
19 lines
562 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 := MtpDocumentsProvider
|
|
LOCAL_CERTIFICATE := media
|
|
LOCAL_PRIVILEGED_MODULE := true
|
|
LOCAL_JNI_SHARED_LIBRARIES := libappfuse_jni
|
|
LOCAL_PROGUARD_FLAG_FILES := proguard.flags
|
|
|
|
# Only enable asserts on userdebug/eng builds
|
|
ifneq (,$(filter userdebug eng, $(TARGET_BUILD_VARIANT)))
|
|
LOCAL_JACK_FLAGS += -D jack.assert.policy=enable
|
|
endif
|
|
|
|
include $(BUILD_PACKAGE)
|
|
include $(call all-makefiles-under, $(LOCAL_PATH))
|