diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2021-07-11 22:52:26 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-11 17:22:26 +0000 |
commit | 6e4ffe290265ef8b3cd82f5ab6a7eb8c0157bf6a (patch) | |
tree | 13739c1079e5cd4ce609cdbb4501450b2eabecb4 /crypto-pgp/build.gradle.kts | |
parent | 9c388e49748084bdac3fb277ea507b80b9c7c33a (diff) |
Add initial implementation of Gopenpgp-backed PGP (#1441)
Diffstat (limited to 'crypto-pgp/build.gradle.kts')
-rw-r--r-- | crypto-pgp/build.gradle.kts | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/crypto-pgp/build.gradle.kts b/crypto-pgp/build.gradle.kts new file mode 100644 index 00000000..493062b6 --- /dev/null +++ b/crypto-pgp/build.gradle.kts @@ -0,0 +1,15 @@ +/* + * 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` +} + +dependencies { + api(projects.cryptoCommon) + implementation(libs.aps.gopenpgp) + implementation(libs.dagger.hilt.core) +} |