File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -14,8 +14,11 @@ android {
1414 packaging {
1515 resources.excludes.add(" META-INF/DEPENDENCIES" )
1616 }
17- kotlinOptions {
18- jvmTarget = " 17"
17+ }
18+
19+ kotlin {
20+ compilerOptions {
21+ jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget .JVM_17
1922 }
2023}
2124
Original file line number Diff line number Diff line change @@ -5,9 +5,11 @@ plugins {
55
66android {
77 namespace = " me.nya_n.notificationnotifier.data.repository"
8+ }
89
9- kotlinOptions {
10- jvmTarget = " 17"
10+ kotlin {
11+ compilerOptions {
12+ jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget .JVM_17
1113 }
1214}
1315
Original file line number Diff line number Diff line change @@ -4,9 +4,11 @@ plugins {
44
55android {
66 namespace = " me.nya_n.notificationnotifier.domain"
7+ }
78
8- kotlinOptions {
9- jvmTarget = " 17"
9+ kotlin {
10+ compilerOptions {
11+ jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget .JVM_17
1012 }
1113}
1214
Original file line number Diff line number Diff line change @@ -10,20 +10,20 @@ versionName = "1.1"
1010# ---------------------------------------------------------
1111
1212# Library
13- agp = " 8.9.3 "
14- kotlin = " 2.2.21 "
13+ agp = " 8.13.2 "
14+ kotlin = " 2.3.0 "
1515kotlinx-coroutines = " 1.10.2"
16- com-google-devtools-ksp = " 2.3.3 " # Kotlinのバージョンに合わせる必要がある
16+ com-google-devtools-ksp = " 2.3.4 "
1717com-jaredsburrows-license = " 0.9.8"
1818androidx-core = " 1.17.0"
1919androidx-appcompat = " 1.7.1"
2020androidx-security = " 1.1.0"
2121androidx-splashscreen = " 1.2.0"
22- androidx-compose-bom = " 2025.12 .00"
23- androidx-compose-activity = " 1.12.1 "
22+ androidx-compose-bom = " 2026.01 .00"
23+ androidx-compose-activity = " 1.12.2 "
2424androidx-compose-viewmodel = " 2.10.0"
2525androidx-compose-navigation = " 2.9.6"
26- androidx-compose-screenshot = " 0.0.1-alpha09 "
26+ androidx-compose-screenshot = " 0.0.1-alpha13 "
2727junit = " 4.13.2"
2828com-google-truth = " 1.4.5"
2929androidx-test-ext = " 1.3.0"
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionUrl =https\://services.gradle.org/distributions/gradle-8.14.3 -bin.zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-9.3.0 -bin.zip
44networkTimeout =10000
55validateDistributionUrl =true
66zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change @@ -5,9 +5,11 @@ plugins {
55
66android {
77 namespace = " me.nya_n.notificationnotifier.model"
8+ }
89
9- kotlinOptions {
10- jvmTarget = " 17"
10+ kotlin {
11+ compilerOptions {
12+ jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget .JVM_17
1113 }
1214}
1315
Original file line number Diff line number Diff line change @@ -8,9 +8,11 @@ android {
88 namespace = " me.nya_n.notificationnotifier.ui"
99 @Suppress(" UnstableApiUsage" )
1010 experimentalProperties[" android.experimental.enableScreenshotTest" ] = true
11+ }
1112
12- kotlinOptions {
13- jvmTarget = " 17"
13+ kotlin {
14+ compilerOptions {
15+ jvmTarget = org.jetbrains.kotlin.gradle.dsl.JvmTarget .JVM_17
1416 }
1517}
1618
@@ -32,4 +34,9 @@ dependencies {
3234 // その他
3335 implementation(libs.io.insert.koin)
3436 implementation(libs.io.insert.koin.compose)
37+ }
38+
39+ tasks.withType<Test >().configureEach {
40+ // FIXME: ScreenshotTestを全部コメントアウトしてるので一時的にfalseにしておく
41+ failOnNoDiscoveredTests = false
3542}
You can’t perform that action at this time.
0 commit comments