Skip to content

Commit

Permalink
Merge pull request #75 from joreilly/version_updates
Browse files Browse the repository at this point in the history
compose dependency updates
  • Loading branch information
joreilly authored Jun 30, 2023
2 parents 7b5288e + 6b92b5f commit 208bfc5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 12 deletions.
20 changes: 10 additions & 10 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath("com.android.tools.build:gradle:8.0.1")
classpath("com.android.tools.build:gradle:8.0.2")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.kotlin}")
classpath("org.jetbrains.kotlin:kotlin-serialization:${Versions.kotlin}")
classpath("com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin:${Versions.kspPlugin}")
Expand All @@ -21,12 +21,12 @@ allprojects {
}
}

allprojects {
configurations.all {
resolutionStrategy.dependencySubstitution {
substitute(module("org.jetbrains.compose.compiler:compiler")).apply {
using(module("androidx.compose.compiler:compiler:${Versions.composeCompiler}"))
}
}
}
}
//allprojects {
// configurations.all {
// resolutionStrategy.dependencySubstitution {
// substitute(module("org.jetbrains.compose.compiler:compiler")).apply {
// using(module("androidx.compose.compiler:compiler:${Versions.composeCompiler}"))
// }
// }
// }
//}
3 changes: 2 additions & 1 deletion buildSrc/src/main/java/Dependencies.kt
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ object Versions {

const val compose = "1.4.3"
const val composeCompiler = "1.4.8-dev-k1.9.0-RC-5532d15c918"
const val jbComposeCompiler = "1.4.8-beta"
const val navCompose = "2.5.3"
const val composeMaterial3 = "1.1.0"
const val composeDesktop = "1.4.0"
const val composeDesktop = "1.4.1"

const val realm = "1.9.0"

Expand Down
2 changes: 1 addition & 1 deletion compose-desktop/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@ application {
}

compose {
kotlinCompilerPlugin.set(Versions.composeCompiler)
kotlinCompilerPlugin.set(Versions.jbComposeCompiler)
kotlinCompilerPluginArgs.add("suppressKotlinVersionCompatibilityCheck=1.9.0-Beta")
}

0 comments on commit 208bfc5

Please sign in to comment.