summaryrefslogtreecommitdiff
path: root/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorFabian Henneke <FabianHenneke@users.noreply.github.com>2020-03-24 14:03:40 +0100
committerGitHub <noreply@github.com>2020-03-24 14:03:40 +0100
commitbebe43468330f182ea35e01ace555ce8d0512aeb (patch)
tree85899eccd985b302183ee1551054ef54bdb0ada5 /app/src/main/AndroidManifest.xml
parent98e9f6734a00cfb1d8164227b2de07d2aea150d2 (diff)
Add support for Oreo Autofill (#653)
Adds support for the Autofill feature first available in Android Oreo. In compatible apps and browsers, login forms are automatically detected and the user is presented with options to fill or generate credentials. In most apps and certain browsers, the service will also offer to create new Password Store entries from credentials entered into login forms. Signed-off-by: Harsh Shandilya <me@msfjarvis.dev> Co-authored-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r--app/src/main/AndroidManifest.xml21
1 files changed, 21 insertions, 0 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index 8e05d5b8..db187ed7 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -58,6 +58,13 @@
<service
android:name=".ClipboardService"
android:process=":clipboard_service_process" />
+ <service android:name=".autofill.oreo.OreoAutofillService"
+ android:permission="android.permission.BIND_AUTOFILL_SERVICE">
+ <intent-filter>
+ <action android:name="android.service.autofill.AutofillService" />
+ </intent-filter>
+ <meta-data android:name="android.autofill" android:resource="@xml/oreo_autofill_service" />
+ </service>
<activity
android:name=".autofill.AutofillActivity"
@@ -74,6 +81,20 @@
android:windowSoftInputMode="adjustResize" />
<activity android:name=".SelectFolderActivity" />
<activity android:name=".sshkeygen.SshKeyGenActivity" android:windowSoftInputMode="adjustResize" />
+ <activity android:name=".autofill.oreo.ui.AutofillDecryptActivity" />
+ <activity
+ android:name=".autofill.oreo.ui.AutofillFilterView"
+ android:configChanges="orientation|keyboardHidden"
+ android:windowSoftInputMode="adjustNothing"
+ android:theme="@style/DialogLikeTheme" />
+ <activity
+ android:name=".autofill.oreo.ui.AutofillSaveActivity"
+ android:theme="@style/DialogLikeTheme"/>
+ <activity
+ android:name=".autofill.oreo.ui.AutofillPublisherChangedActivity"
+ android:configChanges="orientation|keyboardHidden"
+ android:windowSoftInputMode="adjustNothing"
+ android:theme="@style/DialogLikeTheme" />
</application>
</manifest>