diff options
author | Aditya Wasan <adityawasan55@gmail.com> | 2021-08-17 04:14:43 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-17 04:14:43 +0530 |
commit | b7abd561f561af451ec717746e198a8686d10868 (patch) | |
tree | 16af9397d205d6501624ba4e98389e21764d9dd3 /crypto-pgp/build.gradle.kts | |
parent | 9982562dc4e1ab4dbd058cf9d3c3c46fc598dec8 (diff) |
Add `KeyPair` and `KeyManager` to manage keys in the app (#1487)
Co-authored-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to 'crypto-pgp/build.gradle.kts')
-rw-r--r-- | crypto-pgp/build.gradle.kts | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/crypto-pgp/build.gradle.kts b/crypto-pgp/build.gradle.kts index 493062b6..95542b1c 100644 --- a/crypto-pgp/build.gradle.kts +++ b/crypto-pgp/build.gradle.kts @@ -2,14 +2,28 @@ * Copyright © 2014-2021 The Android Password Store Authors. All Rights Reserved. * SPDX-License-Identifier: GPL-3.0-only */ + plugins { id("com.android.library") kotlin("android") `aps-plugin` } +android { + defaultConfig { + testApplicationId = "dev.msfjarvis.aps.cryptopgp.test" + testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" + } +} + dependencies { api(projects.cryptoCommon) + implementation(libs.androidx.annotation) implementation(libs.aps.gopenpgp) implementation(libs.dagger.hilt.core) + implementation(libs.kotlin.coroutines.core) + implementation(libs.thirdparty.kotlinResult) + androidTestImplementation(libs.bundles.testDependencies) + androidTestImplementation(libs.kotlin.coroutines.test) + androidTestImplementation(libs.bundles.androidTestDependencies) } |