Skip to content

Commit 3e32e23

Browse files
authored
Merge pull request #27 from holixfactory/230811-compose-1.4-dependencies
[compose-1.4] update dependencies
2 parents fb8772a + 714e8b7 commit 3e32e23

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

app/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ android {
4545

4646
dependencies {
4747
implementation project(":bottomsheetdialog-compose")
48+
implementation platform(Dependencies.composeBom)
4849
implementation Dependencies.composeUI
4950
implementation Dependencies.composeFoundation
5051
implementation Dependencies.composeMaterial

bottomsheetdialog-compose/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ android {
5050
}
5151

5252
dependencies {
53+
implementation platform(Dependencies.composeBom)
5354
implementation Dependencies.composeUI
5455
implementation Dependencies.androidxActivityKtx
5556
implementation Dependencies.androidxCoreKtx

buildSrc/src/main/kotlin/com/holix/android/bottomsheetdialog/compose/Versions.kt

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,14 @@ package com.holix.android.bottomsheetdialog.compose
33
object Versions {
44
internal const val ANDROID_GRADLE_PLUGIN = "7.3.1"
55
internal const val GRADLE_NEXUS_PUBLISH_PLUGIN = "1.1.0"
6-
internal const val KOTLIN = "1.8.0"
6+
internal const val KOTLIN = "1.9.0"
77

8-
internal const val MATERIAL = "1.8.0"
9-
internal const val ANDROIDX_CORE_KTX = "1.9.0"
8+
internal const val MATERIAL = "1.9.0"
9+
internal const val ANDROIDX_CORE_KTX = "1.10.1"
1010

11-
internal const val COMPOSE_BOM = "2023.01.00"
12-
internal const val COMPOSE = "1.4.0-beta01"
13-
const val COMPOSE_COMPILER = "1.4.1"
14-
internal const val ANDROIDX_ACTIVITY = "1.5.1"
11+
internal const val COMPOSE_BOM = "2023.06.01"
12+
const val COMPOSE_COMPILER = "1.5.1"
13+
internal const val ANDROIDX_ACTIVITY = "1.7.2"
1514

1615
internal const val COLOR_PICKER = "1.0.0"
1716
}
@@ -28,11 +27,11 @@ object Dependencies {
2827
const val androidxCoreKtx = "androidx.core:core-ktx:${Versions.ANDROIDX_CORE_KTX}"
2928

3029
const val composeBom = "androidx.compose:compose-bom:${Versions.COMPOSE_BOM}"
31-
const val composeUI = "androidx.compose.ui:ui:${Versions.COMPOSE}"
32-
const val composeRuntime = "androidx.compose.runtime:runtime:${Versions.COMPOSE}"
33-
const val composeMaterial = "androidx.compose.material:material:${Versions.COMPOSE}"
34-
const val composeFoundation = "androidx.compose.foundation:foundation:${Versions.COMPOSE}"
35-
const val composeTooling = "androidx.compose.ui:ui-tooling:${Versions.COMPOSE}"
30+
const val composeUI = "androidx.compose.ui:ui"
31+
const val composeRuntime = "androidx.compose.runtime:runtime"
32+
const val composeMaterial = "androidx.compose.material:material"
33+
const val composeFoundation = "androidx.compose.foundation:foundation"
34+
const val composeTooling = "androidx.compose.ui:ui-tooling"
3635
const val composeActivity = "androidx.activity:activity-compose:${Versions.ANDROIDX_ACTIVITY}"
3736

3837
const val colorPicker = "com.github.skydoves:colorpicker-compose:${Versions.COLOR_PICKER}"

0 commit comments

Comments
 (0)