diff options
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) +} |