File tree Expand file tree Collapse file tree 4 files changed +8
-10
lines changed
bottomsheetdialog-compose
buildSrc/src/main/kotlin/com/holix/android/bottomsheetdialog/compose Expand file tree Collapse file tree 4 files changed +8
-10
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ android {
37
37
compose = true
38
38
}
39
39
composeOptions {
40
- kotlinCompilerExtensionVersion = Versions . COMPOSE
40
+ kotlinCompilerExtensionVersion = Versions . COMPOSE_COMPILER
41
41
}
42
42
43
43
}
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ android {
44
44
compose = true
45
45
}
46
46
composeOptions {
47
- kotlinCompilerExtensionVersion = Versions . COMPOSE
47
+ kotlinCompilerExtensionVersion = Versions . COMPOSE_COMPILER
48
48
}
49
49
}
50
50
Original file line number Diff line number Diff line change 1
1
package com.holix.android.bottomsheetdialog.compose
2
2
3
3
object Configuration {
4
- const val compileSdk = 31
5
- const val targetSdk = 31
4
+ const val compileSdk = 32
5
+ const val targetSdk = 32
6
6
const val minSdk = 21
7
7
const val majorVersion = 0
8
8
const val minorVersion = 1
Original file line number Diff line number Diff line change @@ -3,14 +3,14 @@ package com.holix.android.bottomsheetdialog.compose
3
3
object Versions {
4
4
internal const val ANDROID_GRADLE_PLUGIN = " 7.2.0"
5
5
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"
8
7
9
8
internal const val MATERIAL = " 1.6.1"
10
9
internal const val ANDROIDX_CORE_KTX = " 1.8.0"
11
10
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"
14
14
}
15
15
16
16
object Dependencies {
@@ -19,8 +19,6 @@ object Dependencies {
19
19
const val gradleNexusPublishPlugin =
20
20
" io.github.gradle-nexus:publish-plugin:${Versions .GRADLE_NEXUS_PUBLISH_PLUGIN } "
21
21
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 } "
24
22
25
23
const val material = " com.google.android.material:material:${Versions .MATERIAL } "
26
24
const val androidxCoreKtx = " androidx.core:core-ktx:${Versions .ANDROIDX_CORE_KTX } "
You can’t perform that action at this time.
0 commit comments