Initial commit

This commit is contained in:
2025-09-26 11:00:51 -03:00
parent 7f3ee661a5
commit c6f1764a9d
10 changed files with 94 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
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.
}
}
}
}