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

Commit 3987a032 authored by Adam Powell's avatar Adam Powell Committed by Android Git Automerger
Browse files

am e01538f2: Merge "TaskStackBuilder - use the correct package for looking up...

am e01538f2: Merge "TaskStackBuilder - use the correct package for looking up parents" into jb-mr1-dev

* commit 'e01538f2':
  TaskStackBuilder - use the correct package for looking up parents
parents 39b9c91e e01538f2
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -162,7 +162,7 @@ public class TaskStackBuilder {
            ActivityInfo info = pm.getActivityInfo(sourceActivityName, 0);
            String parentActivity = info.parentActivityName;
            while (parentActivity != null) {
                final ComponentName target = new ComponentName(mSourceContext, parentActivity);
                final ComponentName target = new ComponentName(info.packageName, parentActivity);
                info = pm.getActivityInfo(target, 0);
                parentActivity = info.parentActivityName;
                final Intent parent = parentActivity == null && insertAt == 0