diff options
author | vexofp <vexofp@gmail.com> | 2019-04-05 18:14:38 -0400 |
---|---|---|
committer | Mohamed Zenadi <zeapo@users.noreply.github.com> | 2019-04-06 00:14:38 +0200 |
commit | f272e4dde2c05de64681a0e089387ef9c54bd7c7 (patch) | |
tree | 3e75e9c7a3a996c3f6d7762dac644ab3f4e7c700 /app/build.gradle.kts | |
parent | 94bf103b337d9df1d6232d85f5edf4673ede651c (diff) |
Authentication using OpenKeystore SSH API (#486)
* Implemented OpenKeystore SSH API as a new authentication option
* Fix formatting problems
Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
* Addressed review comments.
Removed leftover debugging code.
Wrapped excessively long lines.
Added missing new parameter to Javadoc.
* Merge remote-tracking branch 'upstream/master' into gpg-ssh-key
Diffstat (limited to 'app/build.gradle.kts')
-rw-r--r-- | app/build.gradle.kts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 5c7a58df..a82de5dc 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -84,6 +84,7 @@ dependencies { implementation("com.jayway.android.robotium:robotium-solo:5.6.3") implementation(kotlin("stdlib-jdk8", KotlinCompilerVersion.VERSION)) implementation("androidx.constraintlayout:constraintlayout:1.1.3") + implementation("org.sufficientlysecure:sshauthentication-api:1.0") // Testing-only dependencies androidTestImplementation("junit:junit:4.12") |