584008004b
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
15 lines
368 B
Text
15 lines
368 B
Text
plugins {
|
|
alias(libs.plugins.kotlinJvm)
|
|
}
|
|
|
|
dependencies {
|
|
implementation(projects.library.crypto)
|
|
|
|
implementation(libs.coroutines.core)
|
|
implementation(libs.cryptography.bigint)
|
|
implementation(libs.ktor.client.cio)
|
|
implementation(libs.ktor.client.core)
|
|
implementation(libs.ktor.client.websockets)
|
|
|
|
testImplementation(libs.kotlin.test)
|
|
}
|