mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2025-06-29 04:39:53 +00:00
* multiplatform: moved to Gradle KTS and common directory structure
* renamed for review
* different versions for Android and desktop
* update desktop version_name
* Revert "renamed for review"
This reverts commit 80041efe40
.
* EOLs
* change version to 1.0 to appease linter
---------
Co-authored-by: Evgeny Poberezkin <2769109+epoberezkin@users.noreply.github.com>
21 lines
773 B
Kotlin
21 lines
773 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.serialization").version(extra["kotlin.version"] as String)
|
|
}
|
|
}
|
|
|
|
rootProject.name = "app"
|
|
|
|
include(":android", ":desktop", ":common")
|