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

Commit f33b6733 authored by Philip P. Moltmann's avatar Philip P. Moltmann Committed by android-build-merger
Browse files

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

am: f94fa065

Change-Id: I56a380f33f454a6aa575a2029cdcceb4470ec89b
parents bf54f5ec f94fa065
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -15007,7 +15007,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
@@ -18822,8 +18822,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);
            }
        }