feat: scaffold KMP project with Compose Multiplatform (Android, iOS, Desktop)

This commit is contained in:
2026-07-08 16:53:13 +02:00
parent 3b6fae1b95
commit 15ae8cd046
15 changed files with 560 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
pluginManagement {
repositories {
google {
mavenContent {
releasesOnly()
}
}
mavenCentral()
gradlePluginPortal()
}
}
dependencyResolutionManagement {
repositories {
google {
mavenContent {
releasesOnly()
}
}
mavenCentral()
}
}
rootProject.name = "myice_kotlin"
include(":composeApp")