Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Verified Commit 3fefca07 authored by xboxfanj's avatar xboxfanj Committed by Manu Suresh
Browse files

FP6: overlay: Move rro packages to vendor partition

In Android 14, prioritization of partitions is emphasized, diverging
from previous versions where priorities were respected universally.
Overlay precedence now plays a critical role, with the following
partition order dictating overlay precedence:

 - system
 - vendor
 - odm
 - oem
 - product
 - system_ext

When multiple overlays contend for the same resources, the order of
overlays becomes crucial. An overlay takes precedence over others if it
has configurations following its own. This prioritization, while
impactful for GSI compatibility, is essential for maintaining order and
functionality.

Change-Id: I8b7568dcc418dbbd1ccb39e2d0dc66504f19fcdd
parent fd00b349
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -7,5 +7,5 @@
runtime_resource_overlay {
    name: "CarrierConfigResCommon_Sys",
    aaptflags: ["--keep-raw-values"],
    product_specific: true,
    vendor: true,
}
+1 −1
Original line number Diff line number Diff line
@@ -6,5 +6,5 @@

runtime_resource_overlay {
    name: "FrameworksResCommon_Sys",
    product_specific: true,
    vendor: true,
}
+1 −1
Original line number Diff line number Diff line
@@ -6,5 +6,5 @@

runtime_resource_overlay {
    name: "SettingsProvider_Sys",
    product_specific: true,
    vendor: true,
}
+1 −1
Original line number Diff line number Diff line
@@ -6,5 +6,5 @@

runtime_resource_overlay {
    name: "SettingsResCommon_Sys",
    product_specific: true,
    vendor: true,
}
+1 −1
Original line number Diff line number Diff line
@@ -6,5 +6,5 @@

runtime_resource_overlay {
    name: "SystemUIResCommon_Sys",
    product_specific: true,
    vendor: true,
}
Loading