From 05d79cf08a353a69dd3cfcacadebf527efeaca75 Mon Sep 17 00:00:00 2001 From: Ronak Jain Date: Thu, 16 Nov 2023 19:15:52 +0530 Subject: [PATCH] added support to remove the termux window from the recent apps menu on EOF android:excludeFromRecents="true": Ensures that the activity is excluded from the list of recent apps when it finishes. --- app/src/main/AndroidManifest.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 4e95702bc3..c6aeb23ee4 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -58,7 +58,8 @@ android:launchMode="singleTask" android:resizeableActivity="true" android:theme="@style/Theme.TermuxActivity.DayNight.NoActionBar" - tools:targetApi="n"> + tools:targetApi="n" + android:excludeFromRecents="true" >