mirror of
https://github.com/jlengrand/compose-multiplatform.git
synced 2026-03-10 08:11:20 +00:00
Move few examples to 1.0.0-alpha1-rc1
This commit is contained in:
Submodule compose/frameworks/support updated: 883fe193e4...9b5ede8dc4
@@ -8,10 +8,10 @@ buildscript {
|
||||
|
||||
dependencies {
|
||||
// __LATEST_COMPOSE_RELEASE_VERSION__
|
||||
classpath("org.jetbrains.compose:compose-gradle-plugin:0.4.0")
|
||||
classpath("org.jetbrains.compose:compose-gradle-plugin:1.0.0-alpha1-rc1")
|
||||
classpath("com.android.tools.build:gradle:4.0.1")
|
||||
// __KOTLIN_COMPOSE_VERSION__
|
||||
classpath(kotlin("gradle-plugin", version = "1.5.10"))
|
||||
classpath(kotlin("gradle-plugin", version = "1.5.21"))
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@ plugins {
|
||||
// __KOTLIN_COMPOSE_VERSION__
|
||||
kotlin("jvm") version "1.5.21"
|
||||
// __LATEST_COMPOSE_RELEASE_VERSION__
|
||||
id("org.jetbrains.compose") version "0.5.0-build270"
|
||||
id("org.jetbrains.compose") version "1.0.0-alpha1-rc1"
|
||||
}
|
||||
|
||||
group = "me.user"
|
||||
@@ -14,12 +14,12 @@ version = "1.0"
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
google()
|
||||
maven { url = uri("https://maven.pkg.jetbrains.space/public/p/compose/dev") }
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation(compose.desktop.currentOs)
|
||||
implementation(compose.uiTooling)
|
||||
}
|
||||
|
||||
tasks.withType<KotlinCompile>() {
|
||||
|
||||
@@ -28,7 +28,7 @@ class Game {
|
||||
|
||||
var elapsed by mutableStateOf(0L)
|
||||
var score by mutableStateOf(0)
|
||||
var clicked by mutableStateOf(0)
|
||||
private var clicked by mutableStateOf(0)
|
||||
|
||||
var started by mutableStateOf(false)
|
||||
var paused by mutableStateOf(false)
|
||||
|
||||
@@ -8,10 +8,10 @@ buildscript {
|
||||
|
||||
dependencies {
|
||||
// __LATEST_COMPOSE_RELEASE_VERSION__
|
||||
classpath("org.jetbrains.compose:compose-gradle-plugin:0.4.0")
|
||||
classpath("org.jetbrains.compose:compose-gradle-plugin:1.0.0-alpha1-rc1")
|
||||
classpath("com.android.tools.build:gradle:4.0.1")
|
||||
// __KOTLIN_COMPOSE_VERSION__
|
||||
classpath(kotlin("gradle-plugin", version = "1.5.10"))
|
||||
classpath(kotlin("gradle-plugin", version = "1.5.21"))
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user