trying to add native support

This commit is contained in:
InsanusMokrassar 2023-04-03 10:22:43 +06:00
parent cf1fd32b08
commit 0a8e71d76a
1 changed files with 15 additions and 0 deletions

View File

@ -18,6 +18,9 @@ kotlin {
android {
publishAllLibraryVariants()
}
linuxArm64()
linuxX64()
mingwX64()
sourceSets {
commonMain {
@ -50,6 +53,18 @@ kotlin {
implementation libs.android.espresso
}
}
linuxArm64Test {
dependencies {
implementation kotlin('test-js')
implementation kotlin('test-junit')
}
}
mingwX64Test {
dependencies {
implementation kotlin('test-js')
implementation kotlin('test-junit')
}
}
androidMain.dependsOn jvmMain
}