Skip to content

Commit 25f1b19

Browse files
Merge pull request #2 from mmadjer/update-dependencies
Update dependencies
2 parents 3c92f18 + 4892483 commit 25f1b19

File tree

4 files changed

+23
-23
lines changed

4 files changed

+23
-23
lines changed

app/build.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ android {
3636
compose true
3737
}
3838
composeOptions {
39-
kotlinCompilerExtensionVersion '1.3.1'
39+
kotlinCompilerExtensionVersion '1.5.0'
4040
}
4141
packagingOptions {
4242
resources {
@@ -50,30 +50,30 @@ dependencies {
5050

5151
implementation project(':colorpicker')
5252

53-
implementation 'com.github.SmartToolFactory:Compose-Colorful-Sliders:1.1.0'
54-
implementation 'com.github.SmartToolFactory:Compose-Extended-Gestures:2.1.0'
53+
implementation 'com.github.SmartToolFactory:Compose-Colorful-Sliders:1.2.0'
54+
implementation 'com.github.SmartToolFactory:Compose-Extended-Gestures:3.0.0'
5555
implementation 'com.github.SmartToolFactory:Compose-Extended-Colors:1.0.0-alpha07'
5656

5757
// Jetpack Compose
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'
58+
implementation 'androidx.core:core-ktx:1.10.1'
59+
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.1'
60+
implementation 'androidx.activity:activity-compose:1.7.2'
6161

6262
// Jetpack Compose
6363
implementation "androidx.compose.ui:ui:$compose_version"
6464
implementation "androidx.compose.material:material:$compose_version"
6565
implementation "androidx.compose.ui:ui-tooling-preview:$compose_version"
6666

6767

68-
def accompanist_version = "0.25.0"
68+
def accompanist_version = "0.30.1"
6969
// Accompanist
7070
implementation "com.google.accompanist:accompanist-systemuicontroller:$accompanist_version"
7171
implementation "com.google.accompanist:accompanist-pager:$accompanist_version"
7272
implementation "com.google.accompanist:accompanist-drawablepainter:$accompanist_version"
7373

7474
testImplementation 'junit:junit:4.13.2'
75-
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
76-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
75+
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
76+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
7777
androidTestImplementation "androidx.compose.ui:ui-test-junit4:$compose_version"
7878
debugImplementation "androidx.compose.ui:ui-tooling:$compose_version"
7979
}

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.3.0-beta02'
3+
compose_version = '1.4.3'
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.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
7+
id 'com.android.application' version '8.0.2' apply false
8+
id 'com.android.library' version '8.0.2' apply false
9+
id 'org.jetbrains.kotlin.android' version '1.9.0' apply false
1010
}
1111

1212
task clean(type: Delete) {

colorpicker/build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ android {
3131
compose true
3232
}
3333
composeOptions {
34-
kotlinCompilerExtensionVersion '1.3.1'
34+
kotlinCompilerExtensionVersion '1.5.0'
3535
}
3636

3737
packagingOptions {
@@ -44,24 +44,24 @@ android {
4444

4545
dependencies {
4646

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

49-
implementation 'com.github.SmartToolFactory:Compose-Extended-Gestures:2.1.0'
49+
implementation 'com.github.SmartToolFactory:Compose-Extended-Gestures:3.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.1.0'
53+
implementation 'com.github.SmartToolFactory:Compose-Colorful-Sliders:1.2.0'
5454
// Jetpack Compose
5555
implementation "androidx.compose.ui:ui:$compose_version"
5656
implementation "androidx.compose.ui:ui-tooling:$compose_version"
5757
implementation "androidx.compose.material:material:$compose_version"
5858
implementation "androidx.compose.runtime:runtime:$compose_version"
5959
implementation "androidx.compose.material:material-icons-extended:$compose_version"
60-
implementation "androidx.compose.material3:material3:1.0.0-beta02"
60+
implementation "androidx.compose.material3:material3:1.1.1"
6161

6262
testImplementation 'junit:junit:4.13.2'
63-
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
64-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
63+
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
64+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
6565
androidTestImplementation "androidx.compose.ui:ui-test-junit4:$compose_version"
6666
debugImplementation "androidx.compose.ui:ui-tooling:$compose_version"
6767
}
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Wed Mar 09 09:44:35 TRT 2022
1+
#Tue Jul 25 14:46:27 AEST 2023
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.3.3-bin.zip
43
distributionPath=wrapper/dists
5-
zipStorePath=wrapper/dists
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
65
zipStoreBase=GRADLE_USER_HOME
6+
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)