summaryrefslogtreecommitdiff
path: root/app/src/debug/AndroidManifest.xml
diff options
context:
space:
mode:
authorcyBerta <cyberta@riseup.net>2023-04-10 03:12:47 +0200
committercyBerta <cyberta@riseup.net>2023-04-10 03:12:47 +0200
commit8c9d5ba9e1cb6009824d715e5ba23182bbda4366 (patch)
treeabe8da5a80c026c7e8e749fc7a893ab1ecfffba0 /app/src/debug/AndroidManifest.xml
parentf399a22358da416bec16327e093a6ce408fbe013 (diff)
fix fastlane location switching on newer Android versions
Diffstat (limited to 'app/src/debug/AndroidManifest.xml')
-rw-r--r--app/src/debug/AndroidManifest.xml17
1 files changed, 17 insertions, 0 deletions
diff --git a/app/src/debug/AndroidManifest.xml b/app/src/debug/AndroidManifest.xml
index 51e17015..08062ff3 100644
--- a/app/src/debug/AndroidManifest.xml
+++ b/app/src/debug/AndroidManifest.xml
@@ -19,6 +19,23 @@
package="se.leap.bitmaskclient"
android:requestLegacyExternalStorage="true"
>
+
+ <application
+ android:name=".base.BitmaskApp"
+ android:allowBackup="true"
+ android:icon="@mipmap/ic_launcher"
+ android:label="@string/app_name"
+ android:extractNativeLibs="true"
+ android:appCategory="productivity"
+ android:logo="@mipmap/ic_launcher"
+ android:theme="@style/BitmaskTheme">
+ >
+ <provider
+ android:name=".LeakCanaryInstaller"
+ android:authorities="${applicationId}.leakcanary-installer"
+ android:exported="false" />
+ </application>
+
<!-- package is overwritten in build.gradle -->
<!-- The following permissions are required by fastlane / espresso -->