Skip to content

Commit

Permalink
feat: cryptographic abstraction and apollo integration (#100)
Browse files Browse the repository at this point in the history
Co-authored-by: Ahmed Moussa <ahmed.moussa@iohk.io>
  • Loading branch information
cristianIOHK and hamada147 authored Oct 5, 2023
1 parent c7cf22e commit 0549258
Show file tree
Hide file tree
Showing 73 changed files with 1,099 additions and 1,094 deletions.
13 changes: 9 additions & 4 deletions atala-prism-sdk/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ koverReport {
}

kotlin {
androidTarget {
android {
publishAllLibraryVariants()
}

Expand Down Expand Up @@ -111,9 +111,8 @@ kotlin {

implementation("io.iohk.atala.prism.didcomm:didpeer:$didpeerVersion")

implementation("io.iohk.atala.prism.apollo:base64:$apolloVersion")
implementation("io.iohk.atala.prism.apollo:base-asymmetric-encryption:$apolloVersion")
implementation("io.iohk.atala.prism.apollo:ecdsa:$apolloVersion")
implementation("io.iohk.atala.prism.apollo:base64:$apolloVersion")
implementation("io.iohk.atala.prism.apollo:hashing:$apolloVersion")
implementation("io.iohk.atala.prism.apollo:uuid:$apolloVersion")
implementation("io.iohk.atala.prism.apollo:multibase:$apolloVersion")
Expand All @@ -131,13 +130,16 @@ kotlin {
implementation("com.squareup.sqldelight:coroutines-extensions:1.5.5")

api("org.lighthousegames:logging:1.1.2")

implementation("com.ionspin.kotlin:bignum:0.3.8")
}
}
val commonTest by getting {
dependencies {
implementation(kotlin("test"))
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.3")
implementation("io.ktor:ktor-client-mock:2.3.4")
implementation("junit:junit:4.13.2")
}
}
val jvmMain by getting {
Expand Down Expand Up @@ -172,7 +174,10 @@ kotlin {
*/

all {
languageSettings.optIn("kotlin.RequiresOptIn")
languageSettings {
optIn("kotlin.RequiresOptIn")
optIn("kotlin.ExperimentalStdlibApi")
}
}
}
}
Expand Down

This file was deleted.

This file was deleted.

Loading

0 comments on commit 0549258

Please sign in to comment.