From 9d57a34042a4ee117fdb645212369cc08a478de1 Mon Sep 17 00:00:00 2001 From: Twaik Yont <9674930+twaik@users.noreply.github.com> Date: Sun, 16 Aug 2026 10:23:40 +0300 Subject: [PATCH] Changed: Set `android:process` to `${TERMUX_PACKAGE_NAME}` for app to run in `com.termux` process Running in the main `com.termux` process instead of a separate one lets the app share its cpuset, so it can be placed in `top-app` instead of `foreground` while active, which may improve performance. --- app/src/main/AndroidManifest.xml | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index b3aed65..c215fbd 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -15,6 +15,7 @@ android:extractNativeLibs="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" + android:process="${TERMUX_PACKAGE_NAME}" android:theme="@style/AppTheme" tools:targetApi="m">