Skip to content

Commit c8e60e7

Browse files
committed
dependencies updated.
1 parent 7f2bba4 commit c8e60e7

File tree

3 files changed

+13
-9
lines changed

3 files changed

+13
-9
lines changed

build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ buildscript {
1010
android_gradle_plugin_version = '8.2.0'
1111
material_version = '1.10.0'
1212
junit_version = '4.13.2'
13-
kotlin_version = '1.9.10'
14-
kotlin_compiler_extension_version = '1.5.3'
15-
androidx_compose_version = '1.5.3'
13+
kotlin_version = '1.9.20'
14+
kotlin_compiler_extension_version = '1.5.5'
15+
androidx_compose_version = '1.5.4'
1616
androidx_compose_activity_version = '1.8.1'
1717
androidx_appcompat_version = '1.6.1'
1818
androidx_preference_version = '1.2.1'
@@ -46,6 +46,6 @@ allprojects {
4646
}
4747

4848
tasks.register('clean', Delete) {
49-
delete rootProject.buildDir
50-
delete project.buildDir
49+
delete rootProject.fileTree('build')
50+
delete project.fileTree('build')
5151
}

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip

library/build.gradle

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ android {
2020
targetSdk target_sdk
2121
minSdk min_sdk
2222
}
23-
23+
2424
sourceSets.main.java.srcDirs = [ "src/main/java" ]
2525

2626
compileOptions {
@@ -84,8 +84,10 @@ dependencies {
8484
implementation "androidx.core:core-ktx:$androidx_core_version"
8585
implementation "androidx.appcompat:appcompat:$androidx_appcompat_version"
8686
implementation "androidx.preference:preference-ktx:$androidx_preference_version"
87+
88+
//noinspection GradleDependency
8789
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
88-
// implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4'
90+
// implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1'
8991

9092
// https://mvnrepository.com/artifact/androidx.compose
9193
implementation "androidx.compose.ui:ui:$androidx_compose_version"
@@ -99,7 +101,9 @@ dependencies {
99101
debugImplementation "androidx.customview:customview-poolingcontainer:1.0.0"
100102
}
101103

102-
tasks.register('javadoc', Javadoc) {
104+
105+
// TODO: replace deprecated project.buildDir.
106+
tasks.register('javadoc', Javadoc) {it ->
103107

104108
title = "Color Picker ${android.defaultConfig.versionName} API"
105109
source = android.sourceSets.main.java.srcDirs

0 commit comments

Comments
 (0)