Browse Source

Update to 0.1.0-build113

pull/78/head
Nikolay Igotti 4 years ago
parent
commit
aa2a8740ca
  1. 5
      examples/codeviewer/build.gradle.kts
  2. 3
      examples/imageviewer/build.gradle.kts
  3. 1
      examples/imageviewer/common/src/desktopMain/kotlin/example/imageviewer/view/MainScreen.kt
  4. 3
      examples/todoapp/buildSrc/buildSrc/src/main/kotlin/Deps.kt
  5. 5
      templates/desktop-template/build.gradle.kts
  6. 5
      templates/multiplatform-template/build.gradle.kts

5
examples/codeviewer/build.gradle.kts

@ -8,7 +8,8 @@ buildscript {
}
dependencies {
classpath("org.jetbrains.compose:compose-gradle-plugin:0.1.0-m1-build62")
// __UPDATE_COMPOSE_VERSION_MARKER__
classpath("org.jetbrains.compose:compose-gradle-plugin:0.1.0-build113")
classpath("com.android.tools.build:gradle:4.0.1")
classpath(kotlin("gradle-plugin", version = "1.4.0"))
}
@ -20,4 +21,4 @@ allprojects {
jcenter()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
}
}

3
examples/imageviewer/build.gradle.kts

@ -10,7 +10,8 @@ buildscript {
}
dependencies {
classpath("org.jetbrains.compose:compose-gradle-plugin:0.1.0-m1-build62")
// __UPDATE_COMPOSE_VERSION_MARKER__
classpath("org.jetbrains.compose:compose-gradle-plugin:0.1.0-build113")
classpath("com.android.tools.build:gradle:4.0.1")
classpath(kotlin("gradle-plugin", version = "1.4.0"))
}

1
examples/imageviewer/common/src/desktopMain/kotlin/example/imageviewer/view/MainScreen.kt

@ -11,7 +11,6 @@ import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.Spacer
import androidx.compose.foundation.layout.Stack
import androidx.compose.foundation.layout.preferredHeight
import androidx.compose.foundation.layout.preferredWidth
import androidx.compose.foundation.layout.preferredSize

3
examples/todoapp/buildSrc/buildSrc/src/main/kotlin/Deps.kt

@ -10,7 +10,8 @@ object Deps {
}
object Compose {
private const val VERSION = "0.1.0-m1-build62"
// __UPDATE_COMPOSE_VERSION_MARKER__
private const val VERSION = "0.1.0-build113"
const val gradlePlugin = "org.jetbrains.compose:compose-gradle-plugin:$VERSION"
}
}

5
templates/desktop-template/build.gradle.kts

@ -3,7 +3,8 @@ import org.jetbrains.compose.desktop.application.dsl.TargetFormat
plugins {
kotlin("jvm") version "1.4.0"
id("org.jetbrains.compose") version (System.getenv("COMPOSE_TEMPLATE_COMPOSE_VERSION") ?: "0.1.0-m1-build62")
// __UPDATE_COMPOSE_VERSION_MARKER__
id("org.jetbrains.compose") version (System.getenv("COMPOSE_TEMPLATE_COMPOSE_VERSION") ?: "0.1.0-build113")
}
repositories {
@ -24,4 +25,4 @@ compose.desktop {
packageName = "KotlinJvmComposeDesktopApplication"
}
}
}
}

5
templates/multiplatform-template/build.gradle.kts

@ -1,5 +1,6 @@
buildscript {
val composeVersion = System.getenv("COMPOSE_TEMPLATE_COMPOSE_VERSION") ?: "0.1.0-m1-build62"
// __UPDATE_COMPOSE_VERSION_MARKER__
val composeVersion = System.getenv("COMPOSE_TEMPLATE_COMPOSE_VERSION") ?: "0.1.0-build113"
repositories {
// TODO: remove after new build is published
@ -22,4 +23,4 @@ allprojects {
jcenter()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
}
}

Loading…
Cancel
Save