From 844dcee4fd9c41ab81d584ec92d3885d44772ea4 Mon Sep 17 00:00:00 2001 From: Achim Thesmann Date: Thu, 2 Feb 2023 04:22:55 +0000 Subject: [PATCH] Switch default value to match Mendel config. This also enables the experiment in cases where the experiment config is not read, e.g. AOSP or boot tests that disable internet access. Change-Id: I2164f7b362a11b8e4db509c0f86d0fd880fb814a Test: atest ActivityStarterTests BackgroundActivityLaunchTest Bug: 244637991 --- .../core/java/com/android/server/am/PendingIntentRecord.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/core/java/com/android/server/am/PendingIntentRecord.java b/services/core/java/com/android/server/am/PendingIntentRecord.java index 14ecf9facec12..8b34fe0fe4b09 100644 --- a/services/core/java/com/android/server/am/PendingIntentRecord.java +++ b/services/core/java/com/android/server/am/PendingIntentRecord.java @@ -376,7 +376,7 @@ public final class PendingIntentRecord extends IIntentSender.Stub { return DeviceConfig.getBoolean( DeviceConfig.NAMESPACE_WINDOW_MANAGER, ENABLE_DEFAULT_RESCIND_BAL_PRIVILEGES_FROM_PENDING_INTENT_SENDER, - false); // assume false if the property is unknown + true); } /**