Skip to content

Commit

Permalink
fix ios exports
Browse files Browse the repository at this point in the history
  • Loading branch information
JesusMcCloud committed Aug 21, 2023
1 parent ceae408 commit a5d1025
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 3 deletions.
9 changes: 8 additions & 1 deletion vclib-aries/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,14 @@ val artifactVersion: String by extra
group = "at.asitplus.wallet"
version = artifactVersion

exportIosFramework("VcLibAriesKmm", *commonIosExports(), project(":vclib"))
exportIosFramework(
"VcLibAriesKmm",
datetime(),
"at.asitplus:kmmresult:1.5.2",
"io.matthewnelson.kotlin-components:encoding-base16:${VcLibVersions.encoding}",
"io.matthewnelson.kotlin-components:encoding-base64:${VcLibVersions.encoding}",
project(":vclib")
)
kotlin {

sourceSets {
Expand Down
9 changes: 8 additions & 1 deletion vclib-openid/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,14 @@ val artifactVersion: String by extra
group = "at.asitplus.wallet"
version = artifactVersion

exportIosFramework("VcLibOpenIdKmm", *commonIosExports(), project(":vclib"))
exportIosFramework(
"VcLibOpenIdKmm",
datetime(),
"at.asitplus:kmmresult:1.5.2",
"io.matthewnelson.kotlin-components:encoding-base16:${VcLibVersions.encoding}",
"io.matthewnelson.kotlin-components:encoding-base64:${VcLibVersions.encoding}",
project(":vclib")
)
kotlin {

sourceSets {
Expand Down
8 changes: 7 additions & 1 deletion vclib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,13 @@ val artifactVersion: String by extra
group = "at.asitplus.wallet"
version = artifactVersion

exportIosFramework("VcLibKmm", *commonIosExports())
exportIosFramework(
"VcLibKmm",
datetime(),
"at.asitplus:kmmresult:1.5.2",
"io.matthewnelson.kotlin-components:encoding-base16:${VcLibVersions.encoding}",
"io.matthewnelson.kotlin-components:encoding-base64:${VcLibVersions.encoding}",
)
kotlin {


Expand Down

0 comments on commit a5d1025

Please sign in to comment.