Use Java 11

This commit is contained in:
TacoTheDank 2021-09-24 21:28:42 -04:00
parent d1740f77d1
commit 424b1c27e0
2 changed files with 5 additions and 5 deletions

View File

@ -13,11 +13,11 @@ jobs:
- name: Checkout Repository - name: Checkout Repository
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Set-up JDK 8 - name: Set-up JDK 11
uses: actions/setup-java@v2 uses: actions/setup-java@v2
with: with:
java-version: '8' java-version: '11'
distribution: 'adopt' distribution: 'temurin'
- name: Grant Execute Permission for gradlew - name: Grant Execute Permission for gradlew
run: chmod +x gradlew run: chmod +x gradlew

View File

@ -29,8 +29,8 @@ android {
} }
} }
compileOptions { compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8 sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_11
} }
lintOptions { lintOptions {