Issue #7209355: Intent on the secondary user results in an intent picker in the Primary user. Issue #7214271: Crash in system UI Also fix a bug where I recently broke the removeTask() operation in the activity manager where it would remove the wrong task. Change-Id: I448c73a0e83a78d9d8d96b4629658c169888d275
This commit is contained in:
@@ -230,6 +230,21 @@ public class ResolveInfo implements Parcelable {
|
||||
public ResolveInfo() {
|
||||
}
|
||||
|
||||
public ResolveInfo(ResolveInfo orig) {
|
||||
activityInfo = orig.activityInfo;
|
||||
serviceInfo = orig.serviceInfo;
|
||||
filter = orig.filter;
|
||||
priority = orig.priority;
|
||||
preferredOrder = orig.preferredOrder;
|
||||
match = orig.match;
|
||||
specificIndex = orig.specificIndex;
|
||||
labelRes = orig.labelRes;
|
||||
nonLocalizedLabel = orig.nonLocalizedLabel;
|
||||
icon = orig.icon;
|
||||
resolvePackageName = orig.resolvePackageName;
|
||||
system = orig.system;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
ComponentInfo ci = activityInfo != null ? activityInfo : serviceInfo;
|
||||
return "ResolveInfo{"
|
||||
|
||||
Reference in New Issue
Block a user