Skip to content

Commit 5a61a47

Browse files
committed
Update dependencies
- compile/target sdk 31 -> 32 - kotlin 1.6.21 -> 1.7.10 - compose 1.2.0-beta02 -> 1.2.0 - compose compiler 1.3.0 (new) - activity 1.4.0 -> 1.5.0 - kotlin coroutine (removed)
1 parent ced440e commit 5a61a47

File tree

4 files changed

+8
-10
lines changed

4 files changed

+8
-10
lines changed

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ android {
3737
compose = true
3838
}
3939
composeOptions {
40-
kotlinCompilerExtensionVersion = Versions.COMPOSE
40+
kotlinCompilerExtensionVersion = Versions.COMPOSE_COMPILER
4141
}
4242

4343
}

bottomsheetdialog-compose/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ android {
4444
compose = true
4545
}
4646
composeOptions {
47-
kotlinCompilerExtensionVersion = Versions.COMPOSE
47+
kotlinCompilerExtensionVersion = Versions.COMPOSE_COMPILER
4848
}
4949
}
5050

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package com.holix.android.bottomsheetdialog.compose
22

33
object Configuration {
4-
const val compileSdk = 31
5-
const val targetSdk = 31
4+
const val compileSdk = 32
5+
const val targetSdk = 32
66
const val minSdk = 21
77
const val majorVersion = 0
88
const val minorVersion = 1

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

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ package com.holix.android.bottomsheetdialog.compose
33
object Versions {
44
internal const val ANDROID_GRADLE_PLUGIN = "7.2.0"
55
internal const val GRADLE_NEXUS_PUBLISH_PLUGIN = "1.1.0"
6-
internal const val KOTLIN = "1.6.21"
7-
internal const val KOTLIN_COROUTINE = "1.6.1"
6+
internal const val KOTLIN = "1.7.10"
87

98
internal const val MATERIAL = "1.6.1"
109
internal const val ANDROIDX_CORE_KTX = "1.8.0"
1110

12-
internal const val COMPOSE = "1.2.0-beta02"
13-
internal const val COMPOSE_ACTIVITY = "1.4.0"
11+
internal const val COMPOSE = "1.2.0"
12+
const val COMPOSE_COMPILER = "1.3.0"
13+
internal const val COMPOSE_ACTIVITY = "1.5.0"
1414
}
1515

1616
object Dependencies {
@@ -19,8 +19,6 @@ object Dependencies {
1919
const val gradleNexusPublishPlugin =
2020
"io.github.gradle-nexus:publish-plugin:${Versions.GRADLE_NEXUS_PUBLISH_PLUGIN}"
2121
const val kotlinGradlePlugin = "org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.KOTLIN}"
22-
const val coroutines =
23-
"org.jetbrains.kotlinx:kotlinx-coroutines-core:${Versions.KOTLIN_COROUTINE}"
2422

2523
const val material = "com.google.android.material:material:${Versions.MATERIAL}"
2624
const val androidxCoreKtx = "androidx.core:core-ktx:${Versions.ANDROIDX_CORE_KTX}"

0 commit comments

Comments
 (0)