aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorHarsh Shandilya <me@msfjarvis.dev>2021-07-11 22:52:26 +0530
committerGitHub <noreply@github.com>2021-07-11 17:22:26 +0000
commit6e4ffe290265ef8b3cd82f5ab6a7eb8c0157bf6a (patch)
tree13739c1079e5cd4ce609cdbb4501450b2eabecb4 /app/src/main/AndroidManifest.xml
parent9c388e49748084bdac3fb277ea507b80b9c7c33a (diff)
Add initial implementation of Gopenpgp-backed PGP (#1441)
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r--app/src/main/AndroidManifest.xml11
1 files changed, 11 insertions, 0 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index a2c6003c..98d28f0a 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -45,6 +45,10 @@
android:windowSoftInputMode="adjustResize" />
<activity
+ android:name=".ui.crypto.GopenpgpDecryptActivity"
+ android:exported="true" />
+
+ <activity
android:name=".ui.main.LaunchActivity"
android:configChanges="orientation|screenSize"
android:label="@string/app_name"
@@ -91,6 +95,10 @@
android:label="@string/new_password_title"
android:windowSoftInputMode="adjustResize" />
+ <activity android:name=".ui.crypto.GopenpgpPasswordCreationActivity"
+ android:label="@string/new_password_title"
+ android:windowSoftInputMode="adjustResize" />
+
<activity
android:name=".ui.crypto.DecryptActivity"
android:windowSoftInputMode="adjustResize" />
@@ -129,6 +137,9 @@
android:name=".ui.autofill.AutofillDecryptActivity"
android:theme="@style/NoBackgroundTheme" />
<activity
+ android:name=".ui.autofill.GopenpgpAutofillDecryptActivity"
+ android:theme="@style/NoBackgroundTheme" />
+ <activity
android:name=".ui.autofill.AutofillFilterView"
android:configChanges="orientation|keyboardHidden"
android:theme="@style/DialogLikeTheme"