From c35397b27d2d0bf14f2b0adebaa9568ec2e3c1c9 Mon Sep 17 00:00:00 2001 From: SahilSonar Date: Fri, 28 Apr 2023 13:12:38 +0200 Subject: [PATCH 1/2] mt6765-common: Decommonize product shipping api --- mt6765.mk | 3 --- 1 file changed, 3 deletions(-) diff --git a/mt6765.mk b/mt6765.mk index a191577..8ffc83b 100644 --- a/mt6765.mk +++ b/mt6765.mk @@ -18,9 +18,6 @@ PRODUCT_PACKAGES += \ PRODUCT_ENFORCE_RRO_TARGETS := * -# Shipping API -PRODUCT_SHIPPING_API_LEVEL := 29 - # Enable updating of APEXes $(call inherit-product, $(SRC_TARGET_DIR)/product/updatable_apex.mk) -- GitLab From 59db307b673648c4d3dd2fc91af79b52d3485b9f Mon Sep 17 00:00:00 2001 From: SahilSonar Date: Fri, 28 Apr 2023 13:07:33 +0200 Subject: [PATCH 2/2] mt6765-common: Build configstore service - With shipping API 30, configstore is deprecated and doesn't compile by default. We still need it for our display stack to work. --- mt6765.mk | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mt6765.mk b/mt6765.mk index 8ffc83b..3a088b3 100644 --- a/mt6765.mk +++ b/mt6765.mk @@ -82,6 +82,11 @@ PRODUCT_PACKAGES += \ PRODUCT_PACKAGES += \ libsuspend +# Configstore +PRODUCT_PACKAGES += \ + android.hardware.configstore@1.0-impl \ + android.hardware.configstore@1.0-service + # Display PRODUCT_PACKAGES += \ android.hardware.graphics.composer@2.1-service \ -- GitLab