diff options
author | Jake Weinstein <jake@aospa.co> | 2019-09-02 06:12:35 +0200 |
---|---|---|
committer | alk3pInjection <webmaster@raspii.tech> | 2022-01-16 08:10:05 +0800 |
commit | cb184acc7d974236cc95cb3777b8886a010a6c7c (patch) | |
tree | 8c6cb3a58d42a768d575ff96950b7b5806b3ef19 | |
parent | 883d2ea4a51b8e116932ad15ed3fbc6a3295e4d8 (diff) |
common: Skip boot jars check
Matches CAF and fixes errors like these
Error: out/target/common/obj/JAVA_LIBRARIES/telephony-common_intermediates/classes.jar contains class file org/codeaurora/ims/ImsMultiIdentityControllerBase$MultiIdentityBinder.class, which is not in the whitelist
Error: out/target/common/obj/JAVA_LIBRARIES/tcmiface_intermediates/classes.jar contains class file com/quicinc/tcmiface/DpmTcmIface.class, which is not in the whitelist
Error: out/target/common/obj/JAVA_LIBRARIES/telephony-ext_intermediates/classes.jar contains class file org/codeaurora/internal/BearerAllocationStatus$1.class, which is not in the whitelist
Change-Id: I94f376d14134c80c14188b07eebca01933b7e47a
-rw-r--r-- | common.mk | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -21,6 +21,9 @@ BOARD_USES_QCNE := true # Allow building audio encoders TARGET_USES_QCOM_MM_AUDIO := true +# Skip boot jars check +SKIP_BOOT_JARS_CHECK := true + # QCOM HW crypto ifeq ($(TARGET_HW_DISK_ENCRYPTION),true) TARGET_CRYPTFS_HW_PATH ?= vendor/qcom/opensource/commonsys/cryptfs_hw |