From 7b94fa3991f509c2cc782ad4a1f7b89ee2562f1c Mon Sep 17 00:00:00 2001 From: Jeff DeCew Date: Wed, 19 Jul 2023 16:53:04 -0400 Subject: [PATCH] Make ShortcutService.onApplicationActive oneway NOTE: RemoteInputViewController is the only caller of this method, outside of tests. Fixes: 291633239 Test: inline reply Change-Id: I2ef9ea437c5c3a8403b674a7b0c7dcb42621dd8b --- core/java/android/content/pm/IShortcutService.aidl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/java/android/content/pm/IShortcutService.aidl b/core/java/android/content/pm/IShortcutService.aidl index c9735b05cba48..86087cb0c0ef7 100644 --- a/core/java/android/content/pm/IShortcutService.aidl +++ b/core/java/android/content/pm/IShortcutService.aidl @@ -61,7 +61,7 @@ interface IShortcutService { void resetThrottling(); // system only API for developer opsions - void onApplicationActive(String packageName, int userId); // system only API for sysUI + oneway void onApplicationActive(String packageName, int userId); // system only API for sysUI byte[] getBackupPayload(int user);