am 87f50f19: Merge "PACKAGE_FIRST_LAUNCH intent sent to wrong pkg" into honeycomb-mr1

* commit '87f50f19eef2e70fcf7294c3b9cd5ca0344b99ee':
  PACKAGE_FIRST_LAUNCH intent sent to wrong pkg
This commit is contained in:
Paul Milovanov
2011-03-17 10:26:32 -07:00
committed by Android Git Automerger

View File

@ -7030,8 +7030,8 @@ class PackageManagerService extends IPackageManager.Stub {
if (pkgSetting.notLaunched) {
if (pkgSetting.installerPackageName != null) {
sendPackageBroadcast(Intent.ACTION_PACKAGE_FIRST_LAUNCH,
pkgSetting.installerPackageName, null,
pkgSetting.name, null);
pkgSetting.name, null,
pkgSetting.installerPackageName, null);
}
pkgSetting.notLaunched = false;
}