File tree Expand file tree Collapse file tree 4 files changed +21
-7
lines changed
Expand file tree Collapse file tree 4 files changed +21
-7
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,14 @@ plugins {
2323 alias(libs.plugins.compose) apply false
2424}
2525
26+ subprojects {
27+ afterEvaluate {
28+ tasks.withType<Test >().configureEach {
29+ failOnNoDiscoveredTests = false
30+ }
31+ }
32+ }
33+
2634tasks.register(" clean" , Delete ::class ) {
2735 delete(rootProject.layout.buildDirectory)
2836}
Original file line number Diff line number Diff line change @@ -36,4 +36,10 @@ org.gradle.configuration-cache.problems=warn
3636# Disable build features that are enabled by default,
3737# https://developer.android.com/build/releases/gradle-plugin#default-changes
3838android.defaults.buildfeatures.resvalues =false
39- android.defaults.buildfeatures.shaders =false
39+ android.defaults.buildfeatures.shaders =false
40+ # SQLDelight (and other plugins) expect legacy AGP extension types; opt out of new DSL until they support AGP 9 (sqldelight#6078)
41+ android.newDsl =false
42+ # SQLDelight plugin expects KotlinSourceSet "main"; allow legacy source sets until SQLDelight supports AGP 9
43+ android.disallowKotlinSourceSets =false
44+ # Disable AGP's built-in Kotlin to use standalone Kotlin plugin (required for KSP compatibility)
45+ android.builtInKotlin =false
Original file line number Diff line number Diff line change @@ -7,11 +7,11 @@ projectMinSdkVersionWear = "30"
77projectTargetSdkVersion = " 35"
88projectCompileSdkVersion = " 35"
99
10- kotlin = " 2.1.10 "
10+ kotlin = " 2.2.21 "
1111kotlinter = " 5.4.2"
12- ksp = " 2.1.10-1 .0.31 "
12+ ksp = " 2.2.21-2 .0.5 "
1313kotlinxImmutableCollection = " 0.4.0"
14- androidGradlePlugin = " 8.13.2 " # Last version witout any change in code
14+ androidGradlePlugin = " 9.0.1 "
1515
1616ktx = " 1.15.0"
1717
@@ -27,7 +27,7 @@ wearToolingPreview = "1.0.0"
2727horologistComposeLayout = " 0.6.17"
2828
2929detekt = " 1.23.8"
30- hilt = " 2.53 .1"
30+ hilt = " 2.59 .1"
3131androidHiltCompiler = " 1.2.0"
3232hiltNavigationCompose = " 1.2.0"
3333hiltWork = " 1.2.0"
@@ -47,7 +47,7 @@ chucker = "4.2.0" #Last version witout any change in code
4747kotlinx-serialization = " 1.10.0"
4848kotlinx-serialization-converter = " 1.0.0"
4949
50- sqldelight = " 2.1.0 " # Last version witout any change in code
50+ sqldelight = " 2.2.1 "
5151
5252junit = " 4.13.2"
5353junitExt = " 1.3.0"
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
2- distributionUrl =https\://services.gradle.org/distributions/gradle-8.13 -bin.zip
2+ distributionUrl =https\://services.gradle.org/distributions/gradle-9.1.0 -bin.zip
33distributionPath =wrapper/dists
44zipStorePath =wrapper/dists
55zipStoreBase =GRADLE_USER_HOME
You can’t perform that action at this time.
0 commit comments