Skip to content

Commit

Permalink
build: update to java 21
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan-andrew committed Jan 3, 2025
1 parent abd887e commit 2cf6f9c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '11'
java-version: '21'

- name: Cache Gradle
uses: actions/cache@v4
Expand Down
6 changes: 3 additions & 3 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,11 @@ android {
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}
kotlinOptions {
jvmTarget = "11"
jvmTarget = "21"
}
buildFeatures {
compose = true
Expand Down

0 comments on commit 2cf6f9c

Please sign in to comment.