File tree Expand file tree Collapse file tree 5 files changed +28
-18
lines changed
src/main/java/io/syslogic/colorpicker/compose Expand file tree Collapse file tree 5 files changed +28
-18
lines changed Original file line number Diff line number Diff line change 1
1
# Project-wide Gradle settings.
2
2
# @see https://docs.gradle.org/current/userguide/build_environment.html
3
3
org.gradle.jvmargs =-Xmx2048m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
4
+ org.gradle.configuration-cache =true
4
5
org.gradle.configureondemand =false
5
6
org.gradle.parallel =false
6
7
Original file line number Diff line number Diff line change 1
1
[versions ]
2
- app_version_code = ' 29 '
3
- app_version_name = ' 1.3.0 '
4
- android_build_tools = ' 35 .0.0'
2
+ app_version_code = ' 32 '
3
+ app_version_name = ' 1.3.2 '
4
+ android_build_tools = ' 36 .0.0'
5
5
android_compile_sdk = ' 36'
6
6
android_target_sdk = ' 36'
7
7
android_min_sdk = ' 21'
8
8
9
9
# Gradle Plugins
10
- android_gradle_plugin = ' 8.12 .0'
11
- material_design = ' 1.12 .0'
10
+ android_gradle_plugin = ' 8.13 .0'
11
+ material_design = ' 1.13 .0'
12
12
junit = ' 4.13.2'
13
- kotlin = ' 2.2.0 '
13
+ kotlin = ' 2.2.10 '
14
14
15
- androidx_compose_bom = ' 2025.07.00 '
16
- androidx_compose_uitest = ' 1.8.3 '
17
- androidx_core = ' 1.16 .0'
15
+ androidx_compose_bom = ' 2025.08.01 '
16
+ androidx_compose_uitest = ' 1.9.0 '
17
+ androidx_core = ' 1.17 .0'
18
18
androidx_appcompat = ' 1.7.1'
19
19
androidx_navigation = ' 2.9.3'
20
20
androidx_preference = ' 1.2.1'
Original file line number Diff line number Diff line change
1
+ import org.gradle.kotlin.dsl.withType
1
2
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
3
+ import org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile
2
4
3
5
// Module :library
4
6
plugins {
@@ -12,9 +14,12 @@ plugins {
12
14
kotlin {
13
15
compilerOptions {
14
16
jvmTarget = JvmTarget .JVM_17
15
- freeCompilerArgs.addAll(
16
- listOf (" -Xlint:unchecked" , " -Xlint:deprecation" )
17
- )
17
+ }
18
+ }
19
+
20
+ tasks.withType<KotlinJvmCompile >().configureEach {
21
+ compilerOptions {
22
+ // freeCompilerArgs.addAll("-Xlint:unchecked", "-Xlint:deprecation")
18
23
}
19
24
}
20
25
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ fun ColorPickerDialog(
55
55
) {
56
56
Surface (
57
57
shape = RoundedCornerShape (dimensionResource(R .dimen.compose_dialog_border_radius)),
58
- color = colorResource(id = com.google.android.material.R .color.cardview_light_background ),
58
+ color = colorResource(id = com.google.android.material.R .color.design_default_color_background ),
59
59
modifier = Modifier
60
60
.layoutId(DialogSurface )
61
61
.testTag(" dialog_surface" )
Original file line number Diff line number Diff line change 1
1
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
2
+ import org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile
2
3
3
4
// Module :mobile
4
5
plugins {
@@ -9,17 +10,20 @@ plugins {
9
10
alias(libs.plugins.kotlin.kapt)
10
11
}
11
12
13
+ base {
14
+ archivesName = " colorpicker_demo_${libs.versions.app.version.name.get()} "
15
+ }
16
+
12
17
kotlin {
13
18
compilerOptions {
14
19
jvmTarget = JvmTarget .JVM_17
15
- freeCompilerArgs.addAll(
16
- listOf (" -Xlint:unchecked" , " -Xlint:deprecation" )
17
- )
18
20
}
19
21
}
20
22
21
- base {
22
- archivesName = " colorpicker_demo_${libs.versions.app.version.name.get()} "
23
+ tasks.withType<KotlinJvmCompile >().configureEach {
24
+ compilerOptions {
25
+ // freeCompilerArgs.addAll("-Xlint:unchecked", "-Xlint:deprecation")
26
+ }
23
27
}
24
28
25
29
android {
You can’t perform that action at this time.
0 commit comments