You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Fix missing flag on PendingIntent for Target SDK 31+
#jira UE-170743 #android [REVIEW] [at]Jack.Porter #rb Jack.Porter #preflight https://horde.devtools.epicgames.com/job/637c1cf88b12eb83a79559ca robomerge[FN_EngineMerge] -UE5-RES [CL 23232485 by chris babcock in ue5-main branch]
This commit is contained in:
@@ -601,7 +601,7 @@ public class DownloaderActivity extends Activity implements IDownloaderClient {
|
||||
PendingIntent pendingIntent = PendingIntent.getActivity(
|
||||
DownloaderActivity.this,
|
||||
0, intentToLaunchThisActivityFromNotification,
|
||||
PendingIntent.FLAG_UPDATE_CURRENT);
|
||||
PendingIntent.FLAG_UPDATE_CURRENT | PendingIntent.FLAG_IMMUTABLE);
|
||||
// Request to start the download
|
||||
int startResult = DownloaderClientMarshaller.startDownloadServiceIfRequired(this,
|
||||
pendingIntent, OBBDownloaderService.class);
|
||||
|
||||
Reference in New Issue
Block a user