Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f94fa065 authored by Philip P. Moltmann's avatar Philip P. Moltmann Committed by Android (Google) Code Review
Browse files

Merge "Put package name in extra not data" into qt-qpr1-dev

parents 99c07af2 b0c69f18
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -14999,7 +14999,7 @@ public class ActivityManagerService extends IActivityManager.Stub
                                mBatteryStatsService.removeUid(uid);
                                if (intent.getBooleanExtra(Intent.EXTRA_REPLACING, false)) {
                                    mAppOpsService.resetAllModes(UserHandle.getUserId(uid),
                                            intent.getData().getSchemeSpecificPart());
                                            intent.getStringExtra(Intent.EXTRA_PACKAGE_NAME));
                                } else {
                                    mAppOpsService.uidRemoved(uid);
                                }
+7 −1
Original line number Diff line number Diff line
@@ -18821,8 +18821,14 @@ public class PackageManagerService extends IPackageManager.Stub
                }
            }
            if (removedAppId >= 0) {
                // If a system app's updates are uninstalled the UID is not actually removed. Some
                // services need to know the package name affected.
                if (extras.getBoolean(Intent.EXTRA_REPLACING, false)) {
                    extras.putString(Intent.EXTRA_PACKAGE_NAME, removedPackage);
                }
                packageSender.sendPackageBroadcast(Intent.ACTION_UID_REMOVED,
                        removedPackage, extras, Intent.FLAG_RECEIVER_INCLUDE_BACKGROUND,
                        null, extras, Intent.FLAG_RECEIVER_INCLUDE_BACKGROUND,
                    null, null, broadcastUsers, instantUserIds);
            }
        }