diff options
author | Harsh Shandilya <msfjarvis@gmail.com> | 2020-07-23 21:29:04 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-23 21:29:04 +0530 |
commit | 084b833fa49a583433284f0173cb7342152b263b (patch) | |
tree | c3de58ca8631d4d95f8a50cc0a73dcdb29baa5b6 /app/src/main/AndroidManifest.xml | |
parent | da167599d2d7f387daf62bbc51720577de30e7ad (diff) |
Wire in fallback key selection flow (#958)
Co-authored-by: Fabian Henneke <fabian@henneke.me>
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r-- | app/src/main/AndroidManifest.xml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 2fc14f3b..dae4466b 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -81,6 +81,11 @@ android:parentActivityName=".PasswordStore" android:windowSoftInputMode="adjustResize" /> + <activity + android:name=".crypto.GetKeyIdsActivity" + android:parentActivityName=".PasswordStore" + android:theme="@style/NoBackgroundTheme" /> + <service android:name=".autofill.AutofillService" android:enabled="@bool/enable_accessibility_autofill" |