From 7d4db6603b5b2969d49771ff8ef2b83e9a933846 Mon Sep 17 00:00:00 2001 From: Charles Lombardo Date: Sat, 16 Sep 2023 23:50:23 -0400 Subject: [PATCH] android: Update AGP to 8.2.0 Also updates gradle to 8.2 as that is the minimum required version for AGP 8.2.0 --- Source/Android/build.gradle.kts | 4 ++-- Source/Android/gradle/wrapper/gradle-wrapper.properties | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Android/build.gradle.kts b/Source/Android/build.gradle.kts index 5a40522457..1ecafb96f1 100644 --- a/Source/Android/build.gradle.kts +++ b/Source/Android/build.gradle.kts @@ -1,7 +1,7 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. plugins { - id("com.android.application") version "8.0.2" apply false - id("com.android.library") version "8.0.2" apply false + id("com.android.application") version "8.2.0" apply false + id("com.android.library") version "8.2.0" apply false id("org.jetbrains.kotlin.android") version "1.8.21" apply false } diff --git a/Source/Android/gradle/wrapper/gradle-wrapper.properties b/Source/Android/gradle/wrapper/gradle-wrapper.properties index cfe4843ea4..03c675731f 100644 --- a/Source/Android/gradle/wrapper/gradle-wrapper.properties +++ b/Source/Android/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ #Thu Dec 08 14:08:30 EST 2022 distributionBase=GRADLE_USER_HOME -distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip distributionPath=wrapper/dists zipStorePath=wrapper/dists zipStoreBase=GRADLE_USER_HOME