Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
torland-klev committed Oct 10, 2024
1 parent 97ceb58 commit aea80b7
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
18 changes: 9 additions & 9 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
plugins {
id("com.android.application")
id("org.jetbrains.kotlin.android")
id("org.jetbrains.kotlin.plugin.compose") version "2.0.0"
kotlin("plugin.serialization") version "2.0.0"
id("org.jetbrains.kotlin.plugin.compose") version "2.0.20"
kotlin("plugin.serialization") version "2.0.20"
}

android {
Expand Down Expand Up @@ -31,17 +31,17 @@ android {
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
}
kotlinOptions {
jvmTarget = "11"
jvmTarget = "17"
}
buildFeatures {
compose = true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.5.1"
kotlinCompilerExtensionVersion = "1.5.15"
}
packaging {
resources {
Expand All @@ -53,10 +53,10 @@ android {
dependencies {

androidTestImplementation("androidx.compose.ui:ui-test-junit4")
androidTestImplementation("androidx.test.espresso:espresso-core:3.6.0")
androidTestImplementation("androidx.test.espresso:espresso-core:3.6.1")
androidTestImplementation("androidx.test.ext:junit:1.2.1")
androidTestImplementation("com.willowtreeapps.assertk:assertk-jvm:0.28.1")
androidTestImplementation(platform("androidx.compose:compose-bom:2024.09.02"))
androidTestImplementation(platform("androidx.compose:compose-bom:2024.09.03"))

debugImplementation("androidx.compose.ui:ui-test-manifest")
debugImplementation("androidx.compose.ui:ui-tooling")
Expand All @@ -68,7 +68,7 @@ dependencies {
implementation("androidx.compose.ui:ui-tooling-preview")
implementation("androidx.core:core-ktx:1.13.1")
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.8.6")
implementation(platform("androidx.compose:compose-bom:2024.09.02"))
implementation(platform("androidx.compose:compose-bom:2024.09.03"))
implementation("com.github.skydoves:cloudy:0.1.2")

implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.7.3")
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@

plugins {
id("com.android.application") version "8.6.0" apply false
id("com.android.application") version "8.7.0" apply false
id("org.jetbrains.kotlin.android") version "2.0.20" apply false
id("org.jlleitschuh.gradle.ktlint") version "12.1.0"
id("org.jlleitschuh.gradle.ktlint") version "12.1.1"
}

subprojects {
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Wed Feb 28 09:03:12 CET 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit aea80b7

Please sign in to comment.