kee-wallet/library/crypto/build.gradle.kts
seven 584008004b Convert to Android-only project (#1)
We were trying to target Android/iOS/Desktop with the same codebase using Kotlin Multiplatform, but that proved to be more complicated than anticipated. We are simplifying the scope of the project a bit by focusing on Android.

Co-authored-by: Severiano Jaramillo <severiano.jaramillo@gmail.com>
Reviewed-on: #1
2024-04-29 22:37:45 +00:00

9 lines
151 B
Text

plugins {
alias(libs.plugins.kotlinJvm)
}
dependencies {
implementation(libs.cryptography.bigint)
testImplementation(libs.kotlin.test)
}