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`.
This commit is contained in:
Fredrik Fornwall
2026-02-21 11:37:36 +01:00
parent ef4775b651
commit 3f0dec3574

View File

@@ -41,7 +41,6 @@
android:name=".app.TermuxApplication" android:name=".app.TermuxApplication"
android:allowBackup="false" android:allowBackup="false"
android:banner="@drawable/banner" android:banner="@drawable/banner"
android:extractNativeLibs="true"
android:icon="@mipmap/ic_launcher" android:icon="@mipmap/ic_launcher"
android:label="@string/application_name" android:label="@string/application_name"
android:requestLegacyExternalStorage="true" android:requestLegacyExternalStorage="true"