Snap for 7802995 from 209035afce to qt-aml-tzdata-release

Change-Id: I2d106786c81cc3181ac795034311bd32a726985f
This commit is contained in:
Android Build Coastguard Worker
2021-10-07 17:22:39 +00:00

View File

@@ -15,6 +15,9 @@
*/
package com.android.launcher3.model;
import static android.app.PendingIntent.FLAG_IMMUTABLE;
import static android.app.PendingIntent.FLAG_ONE_SHOT;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
@@ -145,7 +148,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) {