diff options
| author | 2024-03-26 01:49:26 +0000 | |
|---|---|---|
| committer | 2024-03-26 13:55:46 +0000 | |
| commit | 145deea5ebb3bb647fcb95e4fb645470df2c02ab (patch) | |
| tree | 39344d6f2d57e8fd6287f86c6697fdf43b2c8ed9 | |
| parent | 4de2223ffb5e948cb4be045ab5fa3bdc91dac9e4 (diff) | |
Change Toast Link
Public developer previews will show toasts when BAL is blocked. The
current link is only valid within Google. This replaces the link with
an external equivalent.
Test: atest BackgroundActivityLaunchTest
Bug: 330968174
Change-Id: I0cca040fda456479cfeab18fcced6f2c974e4045
| -rw-r--r-- | services/core/java/com/android/server/wm/BackgroundActivityStartController.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/core/java/com/android/server/wm/BackgroundActivityStartController.java b/services/core/java/com/android/server/wm/BackgroundActivityStartController.java index 933633836e56..47f4a66995af 100644 --- a/services/core/java/com/android/server/wm/BackgroundActivityStartController.java +++ b/services/core/java/com/android/server/wm/BackgroundActivityStartController.java @@ -783,7 +783,7 @@ public class BackgroundActivityStartController { if (balShowToastsBlocked() && (state.mResultForCaller.allows() || state.mResultForRealCaller.allows())) { // only show a toast if either caller or real caller could launch if they opted in - showToast("BAL blocked. go/debug-bal"); + showToast("BAL blocked. goo.gle/android-bal"); } return statsLog(BalVerdict.BLOCK, state); } |