You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
858 B
29 lines
858 B
3 years ago
|
pluginManagement {
|
||
|
repositories {
|
||
2 years ago
|
gradlePluginPortal()
|
||
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
||
3 years ago
|
google()
|
||
|
}
|
||
|
|
||
2 years ago
|
plugins {
|
||
|
val kotlinVersion = extra["kotlin.version"] as String
|
||
2 years ago
|
val agpVersion = extra["agp.version"] as String
|
||
|
val composeVersion = extra["compose.version"] as String
|
||
|
|
||
|
kotlin("jvm").version(kotlinVersion)
|
||
2 years ago
|
kotlin("multiplatform").version(kotlinVersion)
|
||
|
kotlin("android").version(kotlinVersion)
|
||
2 years ago
|
id("com.android.base").version(agpVersion)
|
||
2 years ago
|
id("com.android.application").version(agpVersion)
|
||
2 years ago
|
id("com.android.library").version(agpVersion)
|
||
2 years ago
|
id("org.jetbrains.compose").version(composeVersion)
|
||
|
}
|
||
3 years ago
|
}
|
||
2 years ago
|
|
||
3 years ago
|
rootProject.name = "minesweeper"
|
||
2 years ago
|
|
||
|
include(":androidApp")
|
||
|
include(":shared")
|
||
|
include(":desktopApp")
|
||
|
include(":jsApp")
|