File tree Expand file tree Collapse file tree 3 files changed +13
-9
lines changed Expand file tree Collapse file tree 3 files changed +13
-9
lines changed Original file line number Diff line number Diff line change @@ -10,9 +10,9 @@ buildscript {
10
10
android_gradle_plugin_version = ' 8.2.0'
11
11
material_version = ' 1.10.0'
12
12
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 '
16
16
androidx_compose_activity_version = ' 1.8.1'
17
17
androidx_appcompat_version = ' 1.6.1'
18
18
androidx_preference_version = ' 1.2.1'
@@ -46,6 +46,6 @@ allprojects {
46
46
}
47
47
48
48
tasks. register(' clean' , Delete ) {
49
- delete rootProject. buildDir
50
- delete project. buildDir
49
+ delete rootProject. fileTree( ' build ' )
50
+ delete project. fileTree( ' build ' )
51
51
}
Original file line number Diff line number Diff line change @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
3
3
distributionPath =wrapper/dists
4
4
zipStoreBase =GRADLE_USER_HOME
5
5
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
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ android {
20
20
targetSdk target_sdk
21
21
minSdk min_sdk
22
22
}
23
-
23
+
24
24
sourceSets. main. java. srcDirs = [ " src/main/java" ]
25
25
26
26
compileOptions {
@@ -84,8 +84,10 @@ dependencies {
84
84
implementation " androidx.core:core-ktx:$androidx_core_version "
85
85
implementation " androidx.appcompat:appcompat:$androidx_appcompat_version "
86
86
implementation " androidx.preference:preference-ktx:$androidx_preference_version "
87
+
88
+ // noinspection GradleDependency
87
89
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 '
89
91
90
92
// https://mvnrepository.com/artifact/androidx.compose
91
93
implementation " androidx.compose.ui:ui:$androidx_compose_version "
@@ -99,7 +101,9 @@ dependencies {
99
101
debugImplementation " androidx.customview:customview-poolingcontainer:1.0.0"
100
102
}
101
103
102
- tasks. register(' javadoc' , Javadoc ) {
104
+
105
+ // TODO: replace deprecated project.buildDir.
106
+ tasks. register(' javadoc' , Javadoc ) {it ->
103
107
104
108
title = " Color Picker ${ android.defaultConfig.versionName} API"
105
109
source = android. sourceSets. main. java. srcDirs
You can’t perform that action at this time.
0 commit comments