Initial commit: Kotlin Compose Desktop Hello World
This commit is contained in:
19
build.gradle.kts
Normal file
19
build.gradle.kts
Normal file
@@ -0,0 +1,19 @@
|
||||
plugins {
|
||||
kotlin("jvm") version "1.9.22"
|
||||
id("org.jetbrains.compose") version "1.6.0"
|
||||
}
|
||||
|
||||
kotlin {
|
||||
jvmToolchain(17)
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(compose.desktop.currentOs)
|
||||
implementation(compose.material3)
|
||||
}
|
||||
|
||||
compose.desktop {
|
||||
application {
|
||||
mainClass = "com.example.kotlindemo.MainKt"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user