We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6216051 commit 6e48043Copy full SHA for 6e48043
.github/workflows/build.yml
@@ -13,10 +13,10 @@ jobs:
13
- name: Checkout repo
14
uses: actions/checkout@v4
15
16
- - name: Setup JDK 17
+ - name: Setup JDK
17
uses: actions/setup-java@v4
18
with:
19
- java-version: '17'
+ java-version: '21'
20
distribution: 'temurin'
21
22
- name: Build with Gradle
app/build.gradle.kts
@@ -49,12 +49,12 @@ android {
49
}
50
51
compileOptions {
52
- sourceCompatibility = JavaVersion.VERSION_17
53
- targetCompatibility = JavaVersion.VERSION_17
+ sourceCompatibility = JavaVersion.VERSION_21
+ targetCompatibility = JavaVersion.VERSION_21
54
55
56
kotlinOptions {
57
- jvmTarget = "17"
+ jvmTarget = "21"
58
59
60
buildFeatures {
0 commit comments