From b2af0dedb4167a110b90f3895edfeb87d5bc3a5c Mon Sep 17 00:00:00 2001 From: Amab Date: Sun, 26 Nov 2023 10:37:19 +0100 Subject: [PATCH] Update Gradle Plugin & update Java version to 17 (#425) ## What changes were proposed in this pull request? Update Gradle Plugin & update Java version to 17. ## How was this patch tested? Manually. Reviewed-on: https://git.cuernodehipnos.es/Marown/SWADroid/pulls/425 Co-authored-by: Amab Co-committed-by: Amab --- .github/PULL_REQUEST_TEMPLATE.md | 2 +- SWADroid/build.gradle | 4 ++-- build.gradle | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index bd405017..8e478c7e 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -7,4 +7,4 @@ (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) -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. diff --git a/SWADroid/build.gradle b/SWADroid/build.gradle index 67f2b29a..e799082d 100644 --- a/SWADroid/build.gradle +++ b/SWADroid/build.gradle @@ -59,8 +59,8 @@ android { } compileOptions { - sourceCompatibility JavaVersion.VERSION_11 - targetCompatibility JavaVersion.VERSION_11 + sourceCompatibility JavaVersion.VERSION_17 + targetCompatibility JavaVersion.VERSION_17 } defaultConfig { diff --git a/build.gradle b/build.gradle index 0f82c9a3..9d7a8257 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ buildscript { google() } dependencies { - classpath 'com.android.tools.build:gradle:8.1.2' + classpath 'com.android.tools.build:gradle:8.1.4' } }