Skip to content

Commit 92eea8b

Browse files
committed
AGP 8.13.0
1 parent 94a5d17 commit 92eea8b

File tree

5 files changed

+28
-18
lines changed

5 files changed

+28
-18
lines changed

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Project-wide Gradle settings.
22
# @see https://docs.gradle.org/current/userguide/build_environment.html
33
org.gradle.jvmargs=-Xmx2048m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8
4+
org.gradle.configuration-cache=true
45
org.gradle.configureondemand=false
56
org.gradle.parallel=false
67

gradle/libs.versions.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
[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'
55
android_compile_sdk = '36'
66
android_target_sdk = '36'
77
android_min_sdk = '21'
88

99
# 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'
1212
junit = '4.13.2'
13-
kotlin = '2.2.0'
13+
kotlin = '2.2.10'
1414

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'
1818
androidx_appcompat = '1.7.1'
1919
androidx_navigation = '2.9.3'
2020
androidx_preference = '1.2.1'

library/build.gradle.kts

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1+
import org.gradle.kotlin.dsl.withType
12
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
3+
import org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile
24

35
// Module :library
46
plugins {
@@ -12,9 +14,12 @@ plugins {
1214
kotlin {
1315
compilerOptions {
1416
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")
1823
}
1924
}
2025

library/src/main/java/io/syslogic/colorpicker/compose/ColorPickerDialog.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ fun ColorPickerDialog(
5555
) {
5656
Surface(
5757
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),
5959
modifier = Modifier
6060
.layoutId(DialogSurface)
6161
.testTag("dialog_surface")

mobile/build.gradle.kts

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
2+
import org.jetbrains.kotlin.gradle.tasks.KotlinJvmCompile
23

34
// Module :mobile
45
plugins {
@@ -9,17 +10,20 @@ plugins {
910
alias(libs.plugins.kotlin.kapt)
1011
}
1112

13+
base {
14+
archivesName = "colorpicker_demo_${libs.versions.app.version.name.get()}"
15+
}
16+
1217
kotlin {
1318
compilerOptions {
1419
jvmTarget = JvmTarget.JVM_17
15-
freeCompilerArgs.addAll(
16-
listOf("-Xlint:unchecked", "-Xlint:deprecation")
17-
)
1820
}
1921
}
2022

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+
}
2327
}
2428

2529
android {

0 commit comments

Comments
 (0)