Merge "PACKAGE_FIRST_LAUNCH intent sent to wrong pkg" into honeycomb-mr1

This commit is contained in:
Paul Milovanov
2011-03-17 10:23:48 -07:00
committed by Android (Google) Code Review

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;
}