38 lines
757 B
Kotlin
38 lines
757 B
Kotlin
|
|
plugins {
|
||
|
|
alias(libs.plugins.kotlinDevKit)
|
||
|
|
alias(libs.plugins.composeDevKit)
|
||
|
|
}
|
||
|
|
|
||
|
|
kotlin {
|
||
|
|
androidLibrary {
|
||
|
|
withHostTestBuilder {
|
||
|
|
}
|
||
|
|
|
||
|
|
withDeviceTestBuilder {
|
||
|
|
sourceSetTreeName = "test"
|
||
|
|
}.configure {
|
||
|
|
instrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
sourceSets {
|
||
|
|
commonMain {
|
||
|
|
dependencies {
|
||
|
|
// Add KMP-specific dependencies here.
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
androidMain {
|
||
|
|
dependencies {
|
||
|
|
// Add Android-specific dependencies here.
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
iosMain {
|
||
|
|
dependencies {
|
||
|
|
// Add iOS-specific dependencies here.
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|