From cd6212538519cbf93b628c71eab3d0e4b981c927 Mon Sep 17 00:00:00 2001 From: Simonx22 Date: Tue, 11 Nov 2025 07:12:46 -0500 Subject: [PATCH] Android: Upgrade AGP dependency from 8.11.0 to 8.13.0 --- Source/Android/build.gradle.kts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Android/build.gradle.kts b/Source/Android/build.gradle.kts index ed91cc6f4fa..f4e5a5f41fd 100644 --- a/Source/Android/build.gradle.kts +++ b/Source/Android/build.gradle.kts @@ -1,9 +1,9 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. plugins { - id("com.android.application") version "8.11.0" apply false - id("com.android.library") version "8.11.0" apply false + id("com.android.application") version "8.13.0" apply false + id("com.android.library") version "8.13.0" apply false id("org.jetbrains.kotlin.android") version "1.8.21" apply false - id("com.android.test") version "8.11.0" apply false + id("com.android.test") version "8.13.0" apply false id("androidx.baselineprofile") version "1.3.3" apply false }