2014-02-06 03:24:45 +01:00
|
|
|
# Handle AndroidManifest.xmls
|
2019-02-07 01:36:32 +01:00
|
|
|
# Input: LOCAL_MANIFEST_FILE, LOCAL_FULL_MANIFEST_FILE, LOCAL_FULL_LIBS_MANIFEST_FILES,
|
|
|
|
# LOCAL_USE_EMBEDDED_NATIVE_LIBS
|
2014-02-06 03:24:45 +01:00
|
|
|
# Output: full_android_manifest
|
|
|
|
|
|
|
|
ifeq ($(strip $(LOCAL_MANIFEST_FILE)),)
|
|
|
|
LOCAL_MANIFEST_FILE := AndroidManifest.xml
|
|
|
|
endif
|
|
|
|
ifdef LOCAL_FULL_MANIFEST_FILE
|
2018-06-18 22:18:37 +02:00
|
|
|
main_android_manifest := $(LOCAL_FULL_MANIFEST_FILE)
|
2014-02-06 03:24:45 +01:00
|
|
|
else
|
2018-06-18 22:18:37 +02:00
|
|
|
main_android_manifest := $(LOCAL_PATH)/$(LOCAL_MANIFEST_FILE)
|
2014-02-06 03:24:45 +01:00
|
|
|
endif
|
|
|
|
|
2015-05-28 00:14:28 +02:00
|
|
|
LOCAL_STATIC_JAVA_AAR_LIBRARIES := $(strip $(LOCAL_STATIC_JAVA_AAR_LIBRARIES))
|
2018-06-12 22:43:10 +02:00
|
|
|
|
|
|
|
my_full_libs_manifest_files :=
|
|
|
|
|
|
|
|
ifndef LOCAL_DONT_MERGE_MANIFESTS
|
|
|
|
my_full_libs_manifest_files += $(LOCAL_FULL_LIBS_MANIFEST_FILES)
|
|
|
|
|
2018-06-08 01:44:07 +02:00
|
|
|
my_full_libs_manifest_files += $(foreach lib, $(LOCAL_STATIC_JAVA_AAR_LIBRARIES) $(LOCAL_STATIC_ANDROID_LIBRARIES),\
|
|
|
|
$(call intermediates-dir-for,JAVA_LIBRARIES,$(lib),,COMMON)/manifest/AndroidManifest.xml)
|
2018-06-12 22:43:10 +02:00
|
|
|
endif
|
|
|
|
|
2018-06-18 22:18:37 +02:00
|
|
|
full_android_manifest := $(intermediates.COMMON)/manifest/AndroidManifest.xml
|
|
|
|
|
2018-06-13 21:34:51 +02:00
|
|
|
ifneq (,$(strip $(my_full_libs_manifest_files)))
|
2018-07-25 19:12:48 +02:00
|
|
|
# Set up rules to merge library manifest files
|
|
|
|
fixed_android_manifest := $(intermediates.COMMON)/manifest/AndroidManifest.xml.fixed
|
2018-06-13 21:34:51 +02:00
|
|
|
|
2018-07-25 19:12:48 +02:00
|
|
|
$(full_android_manifest): PRIVATE_LIBS_MANIFESTS := $(my_full_libs_manifest_files)
|
2019-02-27 07:12:30 +01:00
|
|
|
$(full_android_manifest): $(ANDROID_MANIFEST_MERGER)
|
2018-07-25 19:12:48 +02:00
|
|
|
$(full_android_manifest) : $(fixed_android_manifest) $(my_full_libs_manifest_files)
|
2014-10-29 23:48:32 +01:00
|
|
|
@echo "Merge android manifest files: $@ <-- $< $(PRIVATE_LIBS_MANIFESTS)"
|
2014-02-06 03:24:45 +01:00
|
|
|
@mkdir -p $(dir $@)
|
2018-07-25 19:12:48 +02:00
|
|
|
$(hide) $(ANDROID_MANIFEST_MERGER) --main $< \
|
2017-09-08 22:29:54 +02:00
|
|
|
--libs $(call normalize-path-list,$(PRIVATE_LIBS_MANIFESTS)) \
|
2014-02-06 03:24:45 +01:00
|
|
|
--out $@
|
2018-06-18 22:18:37 +02:00
|
|
|
else
|
2018-07-25 19:12:48 +02:00
|
|
|
fixed_android_manifest := $(full_android_manifest)
|
2014-02-06 03:24:45 +01:00
|
|
|
endif
|
2018-07-25 19:12:48 +02:00
|
|
|
|
2019-04-18 23:46:48 +02:00
|
|
|
my_target_sdk_version := $(call module-target-sdk-version)
|
2020-01-16 19:04:55 +01:00
|
|
|
my_min_sdk_version := $(call module-min-sdk-version)
|
2019-04-18 23:46:48 +02:00
|
|
|
|
|
|
|
ifdef TARGET_BUILD_APPS
|
2020-07-08 11:10:38 +02:00
|
|
|
ifndef TARGET_BUILD_USE_PREBUILT_SDKS
|
2019-04-18 23:46:48 +02:00
|
|
|
ifeq ($(my_target_sdk_version),$(PLATFORM_VERSION_CODENAME))
|
|
|
|
ifdef UNBUNDLED_BUILD_TARGET_SDK_WITH_API_FINGERPRINT
|
|
|
|
my_target_sdk_version := $(my_target_sdk_version).$$(cat $(API_FINGERPRINT))
|
2020-01-16 19:04:55 +01:00
|
|
|
my_min_sdk_version := $(my_min_sdk_version).$$(cat $(API_FINGERPRINT))
|
2019-04-18 23:46:48 +02:00
|
|
|
$(fixed_android_manifest): $(API_FINGERPRINT)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2020-01-16 19:04:55 +01:00
|
|
|
$(fixed_android_manifest): PRIVATE_MIN_SDK_VERSION := $(my_min_sdk_version)
|
2019-04-18 23:46:48 +02:00
|
|
|
$(fixed_android_manifest): PRIVATE_TARGET_SDK_VERSION := $(my_target_sdk_version)
|
2018-09-10 22:37:10 +02:00
|
|
|
|
2018-07-25 19:12:48 +02:00
|
|
|
my_exported_sdk_libs_file := $(call local-intermediates-dir,COMMON)/exported-sdk-libs
|
|
|
|
$(fixed_android_manifest): PRIVATE_EXPORTED_SDK_LIBS_FILE := $(my_exported_sdk_libs_file)
|
|
|
|
$(fixed_android_manifest): $(my_exported_sdk_libs_file)
|
|
|
|
|
2018-08-28 13:28:38 +02:00
|
|
|
my_manifest_fixer_flags :=
|
2018-07-26 01:11:31 +02:00
|
|
|
ifneq ($(LOCAL_MODULE_CLASS),APPS)
|
2018-08-28 13:28:38 +02:00
|
|
|
my_manifest_fixer_flags += --library
|
2018-07-26 01:11:31 +02:00
|
|
|
endif
|
2018-08-28 13:28:38 +02:00
|
|
|
ifeq ($(LOCAL_PRIVATE_PLATFORM_APIS),true)
|
|
|
|
my_manifest_fixer_flags += --uses-non-sdk-api
|
|
|
|
endif
|
2018-10-22 20:25:05 +02:00
|
|
|
|
2019-01-29 22:03:22 +01:00
|
|
|
ifeq (true,$(LOCAL_USE_EMBEDDED_DEX))
|
|
|
|
my_manifest_fixer_flags += --use-embedded-dex
|
2018-10-22 20:25:05 +02:00
|
|
|
endif
|
|
|
|
|
2019-02-07 01:36:32 +01:00
|
|
|
ifeq ($(LOCAL_MODULE_CLASS),APPS)
|
|
|
|
ifeq (true,$(call math_gt_or_eq,$(patsubst $(PLATFORM_VERSION_CODENAME),100,$(call module-min-sdk-version)),23))
|
|
|
|
ifeq (true,$(LOCAL_USE_EMBEDDED_NATIVE_LIBS))
|
|
|
|
my_manifest_fixer_flags += --extract-native-libs=false
|
|
|
|
else
|
|
|
|
my_manifest_fixer_flags += --extract-native-libs=true
|
|
|
|
endif
|
|
|
|
else ifeq (true,$(LOCAL_USE_EMBEDDED_NATIVE_LIBS))
|
|
|
|
$(call pretty-error,LOCAL_USE_EMBEDDED_NATIVE_LIBS is set but minSdkVersion $(call module-min-sdk-version) does not support it)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2022-05-04 14:23:34 +02:00
|
|
|
# TODO: Replace this hardcoded list of optional uses-libraries with build logic
|
|
|
|
# that propagates optionality via the generated exported-sdk-libs files.
|
|
|
|
# Hardcodng doesn't scale and enforces a single choice on each library, while in
|
|
|
|
# reality this is a choice of the library users (which may differ).
|
|
|
|
my_optional_sdk_lib_names := \
|
|
|
|
android.test.base \
|
|
|
|
android.test.mock \
|
|
|
|
androidx.window.extensions \
|
|
|
|
androidx.window.sidecar
|
|
|
|
|
2018-08-28 13:28:38 +02:00
|
|
|
$(fixed_android_manifest): PRIVATE_MANIFEST_FIXER_FLAGS := $(my_manifest_fixer_flags)
|
2018-10-16 03:59:55 +02:00
|
|
|
# These two libs are added as optional dependencies (<uses-library> with
|
|
|
|
# android:required set to false). This is because they haven't existed in pre-P
|
|
|
|
# devices, but classes in them were in bootclasspath jars, etc. So making them
|
|
|
|
# hard dependencies (andriod:required=true) would prevent apps from being
|
|
|
|
# installed to such legacy devices.
|
2022-05-04 14:23:34 +02:00
|
|
|
$(fixed_android_manifest): PRIVATE_OPTIONAL_SDK_LIB_NAMES := $(my_optional_sdk_lib_names)
|
2018-07-25 19:12:48 +02:00
|
|
|
$(fixed_android_manifest): $(MANIFEST_FIXER)
|
|
|
|
$(fixed_android_manifest): $(main_android_manifest)
|
2018-10-16 03:59:55 +02:00
|
|
|
echo $(PRIVATE_OPTIONAL_SDK_LIB_NAMES) | tr ' ' '\n' > $(PRIVATE_EXPORTED_SDK_LIBS_FILE).optional
|
2018-07-25 19:12:48 +02:00
|
|
|
@echo "Fix manifest: $@"
|
|
|
|
$(MANIFEST_FIXER) \
|
|
|
|
--minSdkVersion $(PRIVATE_MIN_SDK_VERSION) \
|
2018-09-10 22:37:10 +02:00
|
|
|
--targetSdkVersion $(PRIVATE_TARGET_SDK_VERSION) \
|
|
|
|
--raise-min-sdk-version \
|
2018-07-26 01:11:31 +02:00
|
|
|
$(PRIVATE_MANIFEST_FIXER_FLAGS) \
|
2018-07-25 19:12:48 +02:00
|
|
|
$(if (PRIVATE_EXPORTED_SDK_LIBS_FILE),\
|
2018-10-16 03:59:55 +02:00
|
|
|
$$(cat $(PRIVATE_EXPORTED_SDK_LIBS_FILE) | grep -v -f $(PRIVATE_EXPORTED_SDK_LIBS_FILE).optional | sort -u | sed -e 's/^/\ --uses-library\ /' | tr '\n' ' ') \
|
|
|
|
$$(cat $(PRIVATE_EXPORTED_SDK_LIBS_FILE) | grep -f $(PRIVATE_EXPORTED_SDK_LIBS_FILE).optional | sort -u | sed -e 's/^/\ --optional-uses-library\ /' | tr '\n' ' ') \
|
|
|
|
) \
|
2018-07-25 19:12:48 +02:00
|
|
|
$< $@
|
2018-10-16 03:59:55 +02:00
|
|
|
rm $(PRIVATE_EXPORTED_SDK_LIBS_FILE).optional
|
2022-05-04 14:23:34 +02:00
|
|
|
|
|
|
|
my_optional_sdk_lib_names :=
|