feat: update Java version to 21 in build configuration
Some checks failed
Build Android APK / build (push) Has been cancelled

This commit is contained in:
2026-01-22 08:49:32 +01:00
parent ff32dc3103
commit fb0066767d
2 changed files with 5 additions and 1 deletions

View File

@@ -23,7 +23,7 @@ jobs:
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
java-version: '21'
- name: Setup Android SDK
uses: android-actions/setup-android@v3

View File

@@ -41,6 +41,10 @@ android {
}
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_21
targetCompatibility JavaVersion.VERSION_21
}
}
repositories {