From 3f0dec3574a6617ff7ff0b78d30b29cfffd71b20 Mon Sep 17 00:00:00 2001 From: Fredrik Fornwall Date: Sat, 21 Feb 2026 11:37:36 +0100 Subject: [PATCH] Fixed: Remove deprecated attribute extractNativeLibs Fixes the following deprecation warning when builing: > AndroidManifest.xml:44:9-41 Warning: > android:extractNativeLibs should not be specified in this source AndroidManifest.xml file. See https://d.android.com/guide/topics/manifest/application-element#extractNativeLibs for more information. > The AGP Upgrade Assistant can remove the attribute from the AndroidManifest.xml file and update the build file accordingly. See https://d.android.com/studio/build/agp-upgrade-assistant for more information. The useLegacyPackaging DSL option is already used in `app/build.gradle`. --- app/src/main/AndroidManifest.xml | 1 - 1 file changed, 1 deletion(-) diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index f45b30f6..1d0dfe19 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -41,7 +41,6 @@ android:name=".app.TermuxApplication" android:allowBackup="false" android:banner="@drawable/banner" - android:extractNativeLibs="true" android:icon="@mipmap/ic_launcher" android:label="@string/application_name" android:requestLegacyExternalStorage="true"