Bypass build time check for users-libs

* set PRODUCT_BROKEN_VERIFY_USES_LIBRARIES to true to bypss the build
time check on users-libs to fix the build error.

Merged-In: I989bcc61f1a044a2d0fceade88cf11d5ff28e368

Bug: 189477034
Test: pass the build
Change-Id: I555b631d47228498c09d1c444999b99c90f1ccaf
(cherry picked from commit e051329d0be70f9bc703f8caf67d8e97bb134cf8)
diff --git a/aosp_coral.mk b/aosp_coral.mk
index 376a576..bde1ce5 100644
--- a/aosp_coral.mk
+++ b/aosp_coral.mk
@@ -54,6 +54,9 @@
 # b/113232673 STOPSHIP deal with Qualcomm stuff later
 # PRODUCT_RESTRICT_VENDOR_FILES := all
 
+# b/189477034: Bypass build time check on uses_libs until vendor fixes all their apps
+PRODUCT_BROKEN_VERIFY_USES_LIBRARIES := true
+
 # Keep the VNDK APEX in /system partition for REL branches as these branches are
 # expected to have stable API/ABI surfaces.
 ifneq (REL,$(PLATFORM_VERSION_CODENAME))
diff --git a/aosp_flame.mk b/aosp_flame.mk
index 46d96cd..573df2e 100644
--- a/aosp_flame.mk
+++ b/aosp_flame.mk
@@ -58,6 +58,9 @@
 # b/113232673 STOPSHIP deal with Qualcomm stuff later
 # PRODUCT_RESTRICT_VENDOR_FILES := all
 
+# b/189477034: Bypass build time check on uses_libs until vendor fixes all their apps
+PRODUCT_BROKEN_VERIFY_USES_LIBRARIES := true
+
 # Keep the VNDK APEX in /system partition for REL branches as these branches are
 # expected to have stable API/ABI surfaces.
 ifneq (REL,$(PLATFORM_VERSION_CODENAME))