diff options
author | Fabian Henneke <FabianHenneke@users.noreply.github.com> | 2020-03-24 14:03:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-24 14:03:40 +0100 |
commit | bebe43468330f182ea35e01ace555ce8d0512aeb (patch) | |
tree | 85899eccd985b302183ee1551054ef54bdb0ada5 /dependencies.gradle | |
parent | 98e9f6734a00cfb1d8164227b2de07d2aea150d2 (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 'dependencies.gradle')
-rw-r--r-- | dependencies.gradle | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/dependencies.gradle b/dependencies.gradle index d691dda2..df3e691c 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -50,8 +50,15 @@ ext.deps = [ jgit: 'org.eclipse.jgit:org.eclipse.jgit:3.7.1.201504261725-r', leakcanary: 'com.squareup.leakcanary:leakcanary-android:2.2', openpgp_ktx: 'com.github.android-password-store:openpgp-ktx:1.2.0', + // The library is updated every two weeks to include the most recent version of the Public + // suffix list. Its API is expected to remain stable for the foreseeable future, and thus + // a reference to the latest version is warranted. + // See: https://github.com/mozilla-mobile/android-components/blob/master/components/lib/publicsuffixlist/README.md + publicsuffixlist: 'org.mozilla.components:lib-publicsuffixlist:+', + recyclical: 'com.afollestad:recyclical:1.1.1', ssh_auth: 'org.sufficientlysecure:sshauthentication-api:1.0', timber: 'com.jakewharton.timber:timber:4.7.1', + timberkt: 'com.github.ajalt:timberkt:1.5.1', whatthestack: 'com.github.haroldadmin:WhatTheStack:0.0.1', ], |