Skip to content

Commit

Permalink
Update library versions in sample
Browse files Browse the repository at this point in the history
  • Loading branch information
russell committed Sep 25, 2024
1 parent 4d0ac49 commit 601c2ba
Show file tree
Hide file tree
Showing 8 changed files with 212 additions and 457 deletions.
2 changes: 1 addition & 1 deletion sample/app-android/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
plugins {
id("com.android.application")
kotlin("android")
kotlin("plugin.compose") version "2.0.0"
kotlin("plugin.compose") version "2.0.20"
}

kotlin {
Expand Down
2 changes: 1 addition & 1 deletion sample/app-browser/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ kotlin {
val jsMain by getting {
dependencies {
implementation(project(":shared"))
implementation("org.jetbrains.kotlinx:kotlinx-html-js:0.8.0")
implementation("org.jetbrains.kotlinx:kotlinx-html-js:0.11.0")
implementation("com.russhwolf:multiplatform-settings:${rootProject.ext["library_version"]}")
}
}
Expand Down
2 changes: 1 addition & 1 deletion sample/app-desktop/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import org.jetbrains.compose.desktop.application.dsl.TargetFormat

plugins {
kotlin("jvm")
kotlin("plugin.compose") version "2.0.0"
kotlin("plugin.compose") version "2.0.20"
id("org.jetbrains.compose") version "1.6.11"
}

Expand Down
8 changes: 4 additions & 4 deletions sample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@
*/

plugins {
kotlin("multiplatform") version "2.0.0" apply false
kotlin("android") version "2.0.0" apply false
id("com.android.library") version "8.1.2" apply false
id("com.android.application") version "8.1.2" apply false
kotlin("multiplatform") version "2.0.20" apply false
kotlin("android") version "2.0.20" apply false
id("com.android.library") version "8.5.2" apply false
id("com.android.application") version "8.5.2" apply false
}

allprojects {
Expand Down
2 changes: 1 addition & 1 deletion sample/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-all.zip
640 changes: 203 additions & 437 deletions sample/kotlin-js-store/yarn.lock

Large diffs are not rendered by default.

11 changes: 0 additions & 11 deletions sample/settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,6 @@
* limitations under the License.
*/
pluginManagement {
resolutionStrategy {
eachPlugin {
when (requested.id.id) {
"org.jetbrains.kotlin.multiplatform",
"org.jetbrains.kotlin.android"-> useModule("org.jetbrains.kotlin:kotlin-gradle-plugin:${requested.version}")
"com.android.library",
"com.android.application" -> useModule("com.android.tools.build:gradle:${requested.version}")
}
}
}

repositories {
google()
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion sample/shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,6 @@ android {
compileSdk = 34

defaultConfig {
minSdk = 15
minSdk = 21
}
}

0 comments on commit 601c2ba

Please sign in to comment.