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

Commit dea0a246 authored by Mady Mellor's avatar Mady Mellor Committed by Android (Google) Code Review
Browse files

Merge "Set package name on the floating intent" into tm-qpr-dev

parents 7f988563 ceff6537
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -68,7 +68,7 @@ public class FloatingTaskIntentResolver {
            return null;
        }
        ComponentName component = new ComponentName(packageName, activityName);
        Intent intent = new Intent(action).setComponent(component);
        Intent intent = new Intent(action).setComponent(component).setPackage(packageName);
        intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        Log.d(TAG, "createIntent returning: " + intent);
        return intent;