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

Commit df0f283b authored by Felipe Leme's avatar Felipe Leme
Browse files

Automatically allowlist carui RRO packages.

Test: adb shell cmd user report-system-user-package-whitelist-problems --critical-only --mode 1 | grep carri || echo NOT_FOUND
Test: atest PreInstalledPackagesTest

Fixes: 172875945
Bug: 172956245

Change-Id: I137c2c0f3094899e864dcdfc83866f07fb1b210f
parent 7df723dd
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -418,6 +418,8 @@ class UserSystemPackageInstaller {
    @VisibleForTesting
    static boolean hasAutoGeneratedRROSuffix(String name) {
        return name.endsWith(".auto_generated_rro_product__")
                // TODO(b/172956245): temporary workaround until OEMs can customize name
                || name.endsWith("carui.rro") || name.endsWith("carui.overlayable.rro")
                || name.endsWith(".auto_generated_rro_vendor__");
    }