Skip to content

Commit ec8a820

Browse files
test
1 parent 757544f commit ec8a820

File tree

7 files changed

+11
-14
lines changed

7 files changed

+11
-14
lines changed

.github/workflows/build-android.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,7 @@ jobs:
2323
with:
2424
distribution: 'temurin'
2525
java-version: |
26-
22
27-
21
26+
23
2827
2928
- name: Set up Gradle
3029
uses: gradle/gradle-build-action@v3

androidApp/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,14 +127,14 @@ android {
127127
}
128128

129129
compileOptions {
130-
sourceCompatibility = JavaVersion.VERSION_22
131-
targetCompatibility = JavaVersion.VERSION_22
130+
sourceCompatibility = JavaVersion.VERSION_23
131+
targetCompatibility = JavaVersion.VERSION_23
132132
isCoreLibraryDesugaringEnabled = true
133133
}
134134

135135
kotlin {
136136
jvmToolchain {
137-
version = "17"
137+
version = "23"
138138
}
139139
}
140140

buildSrc/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@ dependencies {
1414
}
1515

1616
tasks.withType(JavaCompile::class) {
17-
options.release.set(21)
17+
options.release.set(23)
1818
}

desktopApp/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ fun getString(key: String): String {
4747
}
4848

4949
kotlin {
50-
jvmToolchain(21)
50+
jvmToolchain(23)
5151

5252
jvm()
5353
sourceSets {

gradle.properties

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,7 @@ android.suppressUnsupportedCompileSdk=34,35
2222
org.jetbrains.compose.experimental.wasm.enabled=true
2323

2424
# Plugin versions
25-
kotlin.version=2.1.0
26-
agp.version=8.4.1
25+
kotlin.version=2.1.10
26+
agp.version=8.8.2
2727
compose.version=1.8.0-alpha01
2828
sqldelight.version=2.0.2
29-
30-
org.gradle.java.installations.fromEnv=JAVA_HOME_21_X64,JAVA_HOME_22_X64
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Fri Jul 19 17:43:19 GMT 2024
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

shared/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,8 @@ android {
189189
namespace = "com.toasterofbread.spmp.shared"
190190

191191
compileOptions {
192-
sourceCompatibility = JavaVersion.VERSION_22
193-
targetCompatibility = JavaVersion.VERSION_22
192+
sourceCompatibility = JavaVersion.VERSION_23
193+
targetCompatibility = JavaVersion.VERSION_23
194194
}
195195

196196
sourceSets.getByName("main") {

0 commit comments

Comments
 (0)