From dbf2b9a26595fbd00f2d6057593e8a46616ca228 Mon Sep 17 00:00:00 2001 From: MrSluffy Date: Sat, 23 Nov 2024 10:44:45 +0800 Subject: [PATCH] Fixed crashes in A15 - Closes : #5009 --- quickstep/src/com/android/quickstep/SystemUiProxy.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/quickstep/src/com/android/quickstep/SystemUiProxy.java b/quickstep/src/com/android/quickstep/SystemUiProxy.java index 02ac28a0d9..8a6e277bfb 100644 --- a/quickstep/src/com/android/quickstep/SystemUiProxy.java +++ b/quickstep/src/com/android/quickstep/SystemUiProxy.java @@ -192,11 +192,9 @@ public class SystemUiProxy implements ISystemUiProxy, NavHandle, SafeCloseable { mContext = context; mAsyncHandler = new Handler(UI_HELPER_EXECUTOR.getLooper(), this::handleMessageAsync); final Intent baseIntent = new Intent().setPackage(mContext.getPackageName()); - final ActivityOptions options = ActivityOptions.makeBasic(); - Utilities.allowBGLaunch(options); mRecentsPendingIntent = PendingIntent.getActivity(mContext, 0, baseIntent, PendingIntent.FLAG_MUTABLE | PendingIntent.FLAG_ALLOW_UNSAFE_IMPLICIT_INTENT - | Intent.FILL_IN_COMPONENT, options.toBundle()); + | Intent.FILL_IN_COMPONENT); mUnfoldTransitionProvider = (enableUnfoldStateAnimation() && new ResourceUnfoldTransitionConfig().isEnabled())