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

Commit 369aad0e authored by Winson's avatar Winson
Browse files

Don't exclude app info from recents.

Bug: 27216373
Change-Id: Idc419f8922664c618ac6ddc8287b57c89084a2a3
parent 5b4e0d2b
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -346,8 +346,7 @@ public class LauncherAppsService extends SystemService {
                String packageName = component.getPackageName();
                Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS,
                        Uri.fromParts("package", packageName, null));
                intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK |
                        Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
                intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
                intent.setSourceBounds(sourceBounds);
                mContext.startActivityAsUser(intent, opts, user);
            } finally {