Skip to content

Commit 27c13a2

Browse files
update compose version 1.3.0-beta02
1 parent 57301c5 commit 27c13a2

File tree

3 files changed

+20
-20
lines changed

3 files changed

+20
-20
lines changed

app/build.gradle

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ plugins {
44
}
55

66
android {
7-
compileSdk 31
7+
compileSdk 33
88

99
defaultConfig {
1010
applicationId "com.smarttoolfactory.composecolorpicker"
1111
minSdk 21
12-
targetSdk 31
12+
targetSdk 33
1313
versionCode 1
1414
versionName "1.0"
1515

@@ -36,7 +36,7 @@ android {
3636
compose true
3737
}
3838
composeOptions {
39-
kotlinCompilerExtensionVersion compose_version
39+
kotlinCompilerExtensionVersion '1.3.1'
4040
}
4141
packagingOptions {
4242
resources {
@@ -50,21 +50,22 @@ dependencies {
5050

5151
implementation project(':colorpicker')
5252

53-
implementation 'com.github.SmartToolFactory:Compose-Colorful-Sliders:1.0.2'
53+
implementation 'com.github.SmartToolFactory:Compose-Colorful-Sliders:1.1.0'
54+
implementation 'com.github.SmartToolFactory:Compose-Extended-Gestures:2.0.0'
5455
implementation 'com.github.SmartToolFactory:Compose-Extended-Colors:1.0.0-alpha07'
5556

5657
// Jetpack Compose
57-
implementation 'androidx.core:core-ktx:1.7.0'
58-
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.4.1'
59-
implementation 'androidx.activity:activity-compose:1.4.0'
58+
implementation 'androidx.core:core-ktx:1.9.0'
59+
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.5.1'
60+
implementation 'androidx.activity:activity-compose:1.5.1'
6061

6162
// Jetpack Compose
6263
implementation "androidx.compose.ui:ui:$compose_version"
6364
implementation "androidx.compose.material:material:$compose_version"
6465
implementation "androidx.compose.ui:ui-tooling-preview:$compose_version"
6566

6667

67-
def accompanist_version = "0.24.6-alpha"
68+
def accompanist_version = "0.25.0"
6869
// Accompanist
6970
implementation "com.google.accompanist:accompanist-systemuicontroller:$accompanist_version"
7071
implementation "com.google.accompanist:accompanist-pager:$accompanist_version"

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
buildscript {
22
ext {
3-
compose_version = '1.2.0-beta02'
3+
compose_version = '1.3.0-beta02'
44
}
55
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
66
plugins {
7-
id 'com.android.application' version '7.2.0' apply false
8-
id 'com.android.library' version '7.2.0' apply false
9-
id 'org.jetbrains.kotlin.android' version '1.6.21' apply false
7+
id 'com.android.application' version '7.2.2' apply false
8+
id 'com.android.library' version '7.2.2' apply false
9+
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
1010
}
1111

1212
task clean(type: Delete) {

colorpicker/build.gradle

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ plugins {
44
}
55

66
android {
7-
compileSdk 31
7+
compileSdk 33
88

99
defaultConfig {
1010
minSdk 21
11-
targetSdk 31
11+
targetSdk 33
1212

1313
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1414
consumerProguardFiles "consumer-rules.pro"
@@ -31,7 +31,7 @@ android {
3131
compose true
3232
}
3333
composeOptions {
34-
kotlinCompilerExtensionVersion compose_version
34+
kotlinCompilerExtensionVersion '1.3.1'
3535
}
3636

3737
packagingOptions {
@@ -44,21 +44,20 @@ android {
4444

4545
dependencies {
4646

47-
implementation 'androidx.core:core-ktx:1.7.0'
47+
implementation 'androidx.core:core-ktx:1.9.0'
4848

49-
implementation 'com.github.SmartToolFactory:Compose-Extended-Gestures:1.2.0'
49+
implementation 'com.github.SmartToolFactory:Compose-Extended-Gestures:2.0.0'
5050
implementation 'com.github.SmartToolFactory:Compose-Extended-Colors:1.0.0-alpha07'
5151
implementation 'com.github.SmartToolFactory:Compose-Screenshot:1.0.3'
5252
implementation 'com.github.SmartToolFactory:Compose-Color-Detector:1.0.0'
53-
implementation 'com.github.SmartToolFactory:Compose-Colorful-Sliders:1.0.2'
54-
53+
implementation 'com.github.SmartToolFactory:Compose-Colorful-Sliders:1.1.0'
5554
// Jetpack Compose
5655
implementation "androidx.compose.ui:ui:$compose_version"
5756
implementation "androidx.compose.ui:ui-tooling:$compose_version"
5857
implementation "androidx.compose.material:material:$compose_version"
5958
implementation "androidx.compose.runtime:runtime:$compose_version"
6059
implementation "androidx.compose.material:material-icons-extended:$compose_version"
61-
implementation "androidx.compose.material3:material3:1.0.0-alpha12"
60+
implementation "androidx.compose.material3:material3:1.0.0-beta02"
6261

6362
testImplementation 'junit:junit:4.13.2'
6463
androidTestImplementation 'androidx.test.ext:junit:1.1.3'

0 commit comments

Comments
 (0)