Skip to content

Commit 4f81660

Browse files
Update dependencies
1 parent 042a8fd commit 4f81660

File tree

4 files changed

+15
-17
lines changed

4 files changed

+15
-17
lines changed

app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ android {
6060
jvmTarget = "11"
6161
}
6262
composeOptions {
63-
kotlinCompilerExtensionVersion = libs.versions.compose.compiler.get()
63+
kotlinCompilerExtensionVersion = libs.versions.compose.get()
6464
}
6565
sourceSets {
6666
named("main") {

build-logic/convention/src/main/kotlin/com/fragula2/gradle/BuildConst.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ package com.fragula2.gradle
1919
object BuildConst {
2020

2121
const val MIN_SDK = 23
22-
const val TARGET_SDK = 33
23-
const val COMPILE_SDK = 33
22+
const val TARGET_SDK = 34
23+
const val COMPILE_SDK = 34
2424

2525
const val LIBRARY_MIN_SDK = 21
2626
const val LIBRARY_COMPILE_SDK = 33

fragula-compose/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ android {
2323
namespace = "com.fragula2.compose"
2424

2525
composeOptions {
26-
kotlinCompilerExtensionVersion = libs.versions.compose.compiler.get()
26+
kotlinCompilerExtensionVersion = libs.versions.compose.get()
2727
}
2828
buildFeatures {
2929
compose = true

gradle/libs.versions.toml

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,20 @@
11
[versions]
2-
agp = "8.0.0"
2+
agp = "8.1.0"
33
validator = "0.13.0"
4-
kotlin = "1.8.20"
4+
kotlin = "1.9.0"
55
core = "1.10.1"
66
activity = "1.7.2"
7-
fragment = "1.6.0"
7+
fragment = "1.6.1"
88
profile-installer = "1.3.1"
99
appcompat = "1.6.1"
1010
material = "1.9.0"
11-
constraintlayout = "2.1.3"
12-
recyclerview = "1.3.0"
11+
constraintlayout = "2.1.4"
12+
recyclerview = "1.3.1"
1313
coil = "2.4.0"
14-
compose = "1.4.3"
15-
compose-ui = "1.4.3"
16-
compose-compiler = "1.4.5"
14+
compose = "1.5.0"
1715
accompanist = "0.28.0"
1816
lifecycle = "2.6.1"
19-
navigation = "2.6.0"
17+
navigation = "2.7.0"
2018
junit = "4.13.2"
2119
junit-ext = "1.1.5"
2220
test-runner = "1.5.2"
@@ -45,13 +43,13 @@ androidx-viewmodel = { module = "androidx.lifecycle:lifecycle-viewmodel-ktx", ve
4543
androidx-lifecycle = { module = "androidx.lifecycle:lifecycle-runtime-ktx", version.ref = "lifecycle" }
4644
androidx-navigation = { module = "androidx.navigation:navigation-fragment-ktx", version.ref = "navigation" }
4745

48-
compose-ui = { module = "androidx.compose.ui:ui", version.ref = "compose-ui" }
46+
compose-ui = { module = "androidx.compose.ui:ui", version.ref = "compose" }
4947
compose-foundation = { module = "androidx.compose.foundation:foundation", version.ref = "compose" }
5048
compose-material = { module = "androidx.compose.material:material", version.ref = "compose" }
5149
compose-activity = { module = "androidx.activity:activity-compose", version.ref = "activity" }
52-
compose-preview = { module = "androidx.compose.ui:ui-tooling-preview", version.ref = "compose-ui" }
53-
compose-tooling = { module = "androidx.compose.ui:ui-tooling", version.ref = "compose-ui" }
54-
compose-manifest = { module = "androidx.compose.ui:ui-test-manifest", version.ref = "compose-ui" }
50+
compose-preview = { module = "androidx.compose.ui:ui-tooling-preview", version.ref = "compose" }
51+
compose-tooling = { module = "androidx.compose.ui:ui-tooling", version.ref = "compose" }
52+
compose-manifest = { module = "androidx.compose.ui:ui-test-manifest", version.ref = "compose" }
5553
compose-navigation = { module = "androidx.navigation:navigation-compose", version.ref = "navigation" }
5654
compose-drawable = { module = "com.google.accompanist:accompanist-drawablepainter", version.ref = "accompanist" }
5755

0 commit comments

Comments
 (0)