diff options
author | Fabian Henneke <FabianHenneke@users.noreply.github.com> | 2020-07-02 13:49:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-02 13:49:32 +0200 |
commit | ca9c951a536e9ccd2bf3e8f0e2e0a48992d0d655 (patch) | |
tree | bcf32f9bf6178051632baed95d5c70d8355f8e29 /dependencies.gradle | |
parent | c702d4aa9ea09ae27e613d85440a207b37995e86 (diff) |
Fill OTP fields with SMS codes (#900)
* Fill OTP fields with SMS codes
* Allow SMS OTP fill also for web origins
* Introduce free and nonFree build variants
* Fix up workflow
* Improve layout and feature detection
* Workflow changes
* Add Changelog entry
* github: update release workflow for nonFree/Free split
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
* Switch to lifecycleScope
* github: make snapshot deploy free variant
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 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/dependencies.gradle b/dependencies.gradle index f5c7c965..d05e0e6d 100644 --- a/dependencies.gradle +++ b/dependencies.gradle @@ -64,6 +64,10 @@ ext.deps = [ whatthestack: 'com.github.haroldadmin:WhatTheStack:0.0.3', ], + non_free: [ + google_play_auth_api_phone: 'com.google.android.gms:play-services-auth-api-phone:17.4.0', + ], + testing: [ junit: 'junit:junit:4.13', kotlin_test_junit: 'org.jetbrains.kotlin:kotlin-test-junit:1.3.72', |