summaryrefslogtreecommitdiff
path: root/build.gradle
diff options
context:
space:
mode:
authorTorsten Grote <t@grobox.de>2020-06-03 14:40:35 -0300
committerTorsten Grote <t@grobox.de>2020-06-03 17:27:10 -0300
commitbb611284c1d9f0204ad0f5ae08cb03cc0294ec7c (patch)
treeeef8d712c59350fb5c64968e3978eb0834c7f4f3 /build.gradle
parent72c020c3077cb3c0df1ab0fa629f11ea686e140d (diff)
downloadwallet-kotlin-bb611284c1d9f0204ad0f5ae08cb03cc0294ec7c.tar.gz
wallet-kotlin-bb611284c1d9f0204ad0f5ae08cb03cc0294ec7c.tar.bz2
wallet-kotlin-bb611284c1d9f0204ad0f5ae08cb03cc0294ec7c.zip
Add elliptic curve crypto to all platforms
Diffstat (limited to 'build.gradle')
-rw-r--r--build.gradle7
1 files changed, 6 insertions, 1 deletions
diff --git a/build.gradle b/build.gradle
index 7e06be1..b87f250 100644
--- a/build.gradle
+++ b/build.gradle
@@ -3,6 +3,7 @@ plugins {
}
repositories {
mavenCentral()
+ jcenter()
}
group 'net.taler'
version '0.0.1'
@@ -44,7 +45,10 @@ kotlin {
androidMain {
dependencies {
implementation kotlin('stdlib-jdk8')
- implementation 'org.bouncycastle:bcprov-jdk15on:1.65.01'
+ // TODO Android
+// implementation "com.goterl.lazycode:lazysodium-android:4.1.1@aar"
+ implementation "com.goterl.lazycode:lazysodium-java:4.2.6"
+ implementation 'net.java.dev.jna:jna:5.5.0@aar'
}
}
androidTest {
@@ -57,6 +61,7 @@ kotlin {
dependencies {
implementation kotlin('stdlib-js')
implementation npm('tweetnacl', '1.0.3')
+ implementation npm('ed2curve', '0.3.0')
}
}
jsTest {