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

Commit c4aa9af1 authored by Bill Yi's avatar Bill Yi
Browse files

Merge RQ3A.210905.001 to aosp-master - DO NOT MERGE

Merged-In: I73e01a9461ec61f09c776977b1ecb49ad9de991d
Merged-In: Ica201e7c4918e764197a6aac639f7966e3e588bd
Merged-In: Ica201e7c4918e764197a6aac639f7966e3e588bd
Change-Id: Ifdc908d4a1adae19346b70202f743a9087ee4a71
parents d6d67c99 1ba7ecee
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -15,6 +15,8 @@
 */
package com.android.launcher3.model;

import static android.app.PendingIntent.FLAG_IMMUTABLE;
import static android.app.PendingIntent.FLAG_ONE_SHOT;
import static android.os.Process.myUserHandle;

import android.app.PendingIntent;
@@ -145,7 +147,7 @@ public class FirstScreenBroadcast {
                .putStringArrayListExtra(HOTSEAT_ITEM_EXTRA, new ArrayList<>(hotseatItems))
                .putStringArrayListExtra(WIDGET_ITEM_EXTRA, new ArrayList<>(widgetItems))
                .putExtra(VERIFICATION_TOKEN_EXTRA, PendingIntent.getActivity(context, 0,
                        new Intent(), PendingIntent.FLAG_ONE_SHOT)));
                        new Intent(), FLAG_ONE_SHOT | FLAG_IMMUTABLE)));
    }

    private static String getPackageName(ItemInfo info) {