Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Lambada10 committed Oct 24, 2024
1 parent 5e99c28 commit 6a7c794
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 16 deletions.
3 changes: 3 additions & 0 deletions .idea/inspectionProfiles/Project_Default.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Empty file.
1 change: 1 addition & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ plugins {
alias(libs.plugins.kotlinAndroid)
alias(libs.plugins.serialization)
alias(libs.plugins.parcelize)
alias(libs.plugins.compose.compiler)
}

android {
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/java/pl/lambada/songsync/util/ext/ComposeExt.kt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import androidx.compose.foundation.interaction.PressInteraction
import androidx.compose.foundation.layout.ExperimentalLayoutApi
import androidx.compose.foundation.layout.WindowInsets
import androidx.compose.foundation.layout.isImeVisible
import androidx.compose.material.ripple.rememberRipple
import androidx.compose.material3.ripple
import androidx.compose.runtime.Composable
import androidx.compose.runtime.DisposableEffect
import androidx.compose.runtime.getValue
Expand Down Expand Up @@ -97,7 +97,7 @@ fun Modifier.repeatingClickable(
}
}.indication(
interactionSource = interactionSource,
indication = rememberRipple()
indication = ripple()
)
}
)
25 changes: 13 additions & 12 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
[versions]
accompanist-systemuicontroller = "0.34.0"
accompanist-permissions = "0.34.0"
agp = "8.4.2"
coil-compose = "2.6.0"
kotlin = "1.9.24"
agp = "8.7.1"
coil-compose = "2.7.0"
kotlin = "2.0.0"
core-ktx = "1.13.1"
material3 = "1.2.1"
kotlinx-coroutines-android = "1.8.0"
material3 = "1.3.0"
kotlinx-coroutines-android = "1.8.1"
kotlinx-serialization-json = "1.6.3"
lifecycle-runtime-ktx = "2.8.3"
activity-compose = "1.9.0"
compose-bom = "2024.06.00"
compose-animation = "1.7.0-beta05"
material-icons-extended = "1.6.8"
navigation-compose = "2.8.0-beta05"
navigation-runtime-ktx = "2.8.0-beta05"
lifecycle-runtime-ktx = "2.8.6"
activity-compose = "1.9.3"
compose-bom = "2024.10.00"
compose-animation = "1.7.4"
material-icons-extended = "1.7.4"
navigation-compose = "2.8.3"
navigation-runtime-ktx = "2.8.3"
preference = "1.2.1"
ktor = "2.3.6"
datastore = "1.1.1"
Expand Down Expand Up @@ -49,5 +49,6 @@ androidApplication = { id = "com.android.application", version.ref = "agp" }
kotlinAndroid = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
serialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlin" }
parcelize = { id = "org.jetbrains.kotlin.plugin.parcelize", version.ref = "kotlin" }
compose-compiler = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }

[bundles]
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 @@
#Sun Apr 28 09:48:17 IRST 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.9-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 6a7c794

Please sign in to comment.