2
0
mirror of https://github.com/fork-maintainers/iceraven-browser synced 2024-11-03 23:15:31 +00:00

[fenix] Explicitly set android:extractNativeLibs to true in ApplicationManifest.xml

The Android Gradle Plugin's default for android:extractNativeLibs changed from
true to false beginning with version 3.6.0. Based on GeckoView's needs, we
should ensure that this attribute is explicitly set to true.
This commit is contained in:
Aaron Klotz 2021-03-11 11:04:33 -07:00 committed by Michael Comella
parent 2fb552617a
commit 6c8838adb7

View File

@ -25,6 +25,7 @@
<application
android:name=".FenixApplication"
android:allowBackup="false"
android:extractNativeLibs="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"