diff options
author | cyberta <cyberta@riseup.net> | 2023-04-12 08:12:07 +0000 |
---|---|---|
committer | cyberta <cyberta@riseup.net> | 2023-04-12 08:12:07 +0000 |
commit | a4deca391ce064510002e24ba9f18d965f0dee59 (patch) | |
tree | 2ffe0d6b6fbbe8c9994e12d00273b10c827b9d2a /app/src/debug/AndroidManifest.xml | |
parent | 49adad2fabcee3077be729064409bfcfbc99fe01 (diff) | |
parent | bf797d855bb55f325e2fb647ac0690aabc62772f (diff) |
Merge branch 'improve_fastlane' into 'master'
improve fastlane
See merge request leap/bitmask_android!244
Diffstat (limited to 'app/src/debug/AndroidManifest.xml')
-rw-r--r-- | app/src/debug/AndroidManifest.xml | 17 |
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 --> |