diff options
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r-- | app/src/main/AndroidManifest.xml | 11 |
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" |