Update Gradle Plugin & update Java version to 17 (#425)
All checks were successful
continuous-integration/drone/push Build is passing

## What changes were proposed in this pull request?

Update Gradle Plugin & update Java version to 17.

## How was this patch tested?

Manually.

Reviewed-on: #425
Co-authored-by: Amab <juanmi1982@gmail.com>
Co-committed-by: Amab <juanmi1982@gmail.com>
This commit is contained in:
Amab 2023-11-26 10:37:19 +01:00 committed by Marown
parent a3beeeebef
commit b2af0dedb4
3 changed files with 4 additions and 4 deletions

View File

@ -7,4 +7,4 @@
(Please explain how this patch was tested. E.g. unit tests, integration tests, manual tests) (Please explain how this patch was tested. E.g. unit tests, integration tests, manual tests)
(If this patch involves UI changes, please attach a screenshot; otherwise, remove this) (If this patch involves UI changes, please attach a screenshot; otherwise, remove this)
Please review https://github.com/Amab/SWADroid/blob/develop/CONTRIBUTING.md before opening a pull request. Please review https://git.cuernodehipnos.es/Marown/SWADroid/src/branch/main/.github/CONTRIBUTING.md before opening a pull request.

View File

@ -59,8 +59,8 @@ android {
} }
compileOptions { compileOptions {
sourceCompatibility JavaVersion.VERSION_11 sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_11 targetCompatibility JavaVersion.VERSION_17
} }
defaultConfig { defaultConfig {

View File

@ -5,7 +5,7 @@ buildscript {
google() google()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:8.1.2' classpath 'com.android.tools.build:gradle:8.1.4'
} }
} }