Merge "Refrain from returning mutable pending intent in getShortcutIntent" into sc-dev am: c4adbc278e

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/15315840

Change-Id: Id2d3ccdfb1eba674fa34c2301112c25520a47d86
This commit is contained in:
Pinyao Ting
2021-07-19 19:16:04 +00:00
committed by Automerger Merge Worker

View File

@@ -18,7 +18,7 @@ package com.android.server.pm;
import static android.app.ActivityOptions.KEY_SPLASH_SCREEN_THEME;
import static android.app.PendingIntent.FLAG_IMMUTABLE;
import static android.app.PendingIntent.FLAG_MUTABLE;
import static android.app.PendingIntent.FLAG_UPDATE_CURRENT;
import static android.content.Intent.FLAG_ACTIVITY_MULTIPLE_TASK;
import static android.content.Intent.FLAG_ACTIVITY_NEW_DOCUMENT;
import static android.content.pm.LauncherApps.FLAG_CACHE_BUBBLE_SHORTCUTS;
@@ -699,7 +699,8 @@ public class LauncherAppsService extends SystemService {
final long ident = Binder.clearCallingIdentity();
try {
return injectCreatePendingIntent(0 /* requestCode */, intents,
FLAG_MUTABLE, opts, packageName, mPackageManagerInternal.getPackageUid(
FLAG_IMMUTABLE | FLAG_UPDATE_CURRENT, opts, packageName,
mPackageManagerInternal.getPackageUid(
packageName, PackageManager.MATCH_DIRECT_BOOT_AUTO,
user.getIdentifier()));
} finally {