add android tools

This commit is contained in:
2020-11-10 15:43:15 +06:00
parent 97dadf517a
commit 5ce71ee6f6
44 changed files with 862 additions and 31 deletions

View File

@@ -9,6 +9,9 @@ kotlin {
browser()
nodejs()
}
android {
publishLibraryVariants()
}
sourceSets {
commonMain {
@@ -34,5 +37,14 @@ kotlin {
implementation kotlin('test-junit')
}
}
androidTest {
dependencies {
implementation kotlin('test-junit')
implementation "androidx.test.ext:junit:$test_ext_junit_version"
implementation "androidx.test.espresso:espresso-core:$espresso_core"
}
}
}
}
apply from: "$defaultAndroidSettingsPresetPath"