Set LOCAL_MIN_SDK_VERSION in SettingsLib so that the build system doesn't raise the minSdkVersion value specified in the manifest, which causes ManifestMerger to error when trying to merge it into a package that specifies a lower minSdkVersion. Bug: 78447299 Test: m java Change-Id: Ie2c2458647cd6495418999b35894dc92343992cc
30 lines
642 B
Makefile
30 lines
642 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_USE_AAPT2 := true
|
|
|
|
LOCAL_AAPT2_ONLY := true
|
|
|
|
LOCAL_MODULE := SettingsLib
|
|
|
|
LOCAL_SHARED_ANDROID_LIBRARIES := \
|
|
android-support-annotations \
|
|
android-support-v4 \
|
|
android-support-v7-recyclerview \
|
|
android-support-v7-preference \
|
|
android-support-v7-appcompat \
|
|
android-support-v14-preference
|
|
|
|
LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
|
|
|
|
LOCAL_JAR_EXCLUDE_FILES := none
|
|
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
|
|
|
LOCAL_MIN_SDK_VERSION := 21
|
|
|
|
include $(BUILD_STATIC_JAVA_LIBRARY)
|
|
|
|
# For the test package.
|
|
include $(call all-makefiles-under, $(LOCAL_PATH))
|