mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-03-30 16:25:57 +00:00
* android, desktop: compose 1.8.0-beta01 + Kotlin 2.1.20 + compileSdk 35 * more fixes * remove non-total methods * fix script path * switch to stable compose.ui, import icons separately --------- Co-authored-by: Evgeny Poberezkin <evgeny@poberezkin.com>
23 lines
866 B
Kotlin
23 lines
866 B
Kotlin
pluginManagement {
|
|
repositories {
|
|
google()
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
|
}
|
|
|
|
plugins {
|
|
kotlin("multiplatform").version(extra["kotlin.version"] as String)
|
|
kotlin("android").version(extra["kotlin.version"] as String)
|
|
id("com.android.application").version(extra["gradle.plugin.version"] as String)
|
|
id("com.android.library").version(extra["gradle.plugin.version"] as String)
|
|
id("org.jetbrains.compose").version(extra["compose.version"] as String)
|
|
id("org.jetbrains.kotlin.plugin.compose").version(extra["kotlin.version"] as String)
|
|
id("org.jetbrains.kotlin.plugin.serialization").version(extra["kotlin.version"] as String)
|
|
}
|
|
}
|
|
|
|
rootProject.name = "app"
|
|
|
|
include(":android", ":desktop", ":common")
|