Merge "Add uId into AppInfo page launch variable" into sc-dev am: 437d755e4e

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

Change-Id: I7a2e42bfd4d937dcd677e19addd37c6e5cd0fff8
This commit is contained in:
Wesley Wang
2021-05-26 07:20:12 +00:00
committed by Automerger Merge Worker

View File

@@ -1207,8 +1207,16 @@ public class LauncherAppsService extends SystemService {
final long ident = Binder.clearCallingIdentity();
try {
String packageName = component.getPackageName();
int uId = -1;
try {
uId = mContext.getPackageManager().getApplicationInfo(
packageName, PackageManager.MATCH_ANY_USER).uid;
} catch (PackageManager.NameNotFoundException e) {
Log.d(TAG, "package not found: " + e);
}
intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS,
Uri.fromParts("package", packageName, null));
intent.putExtra("uId", uId);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
intent.setSourceBounds(sourceBounds);
} finally {