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

Commit 54ff824d authored by Winson's avatar Winson Committed by android-build-merger
Browse files

Don\'t exclude app info from recents.

am: 369aad0e

* commit '369aad0e':
  Don't exclude app info from recents.
parents d9f49d36 369aad0e
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 {