We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85eaff7 commit d06f6faCopy full SHA for d06f6fa
2 files changed
.github/workflows/main.yml
@@ -15,7 +15,7 @@ jobs:
15
- name: Set up JDK
16
uses: actions/setup-java@v3.13.0
17
with:
18
- java-version: '11'
+ java-version: '17'
19
distribution: 'temurin'
20
21
- name: Make gradlew executable
app/build.gradle
@@ -31,11 +31,11 @@ android {
31
}
32
33
compileOptions {
34
- sourceCompatibility JavaVersion.VERSION_11
35
- targetCompatibility JavaVersion.VERSION_11
+ sourceCompatibility JavaVersion.VERSION_17
+ targetCompatibility JavaVersion.VERSION_17
36
37
kotlinOptions {
38
- jvmTarget = '11'
+ jvmTarget = '17'
39
40
buildFeatures {
41
viewBinding = true
0 commit comments