Android: Upgrade AGP & Gradle

AGP 8.2.0 -> 8.9.0
Gradle and wrapper to 8.11.1
Baseline Profile plugin to 1.3.3
This commit is contained in:
dreamsyntax 2025-01-09 15:27:41 -07:00
commit 5beb136992
5 changed files with 260 additions and 167 deletions

View file

@ -1,10 +1,10 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
plugins {
id("com.android.application") version "8.2.0" apply false
id("com.android.library") version "8.2.0" apply false
id("com.android.application") version "8.9.0" apply false
id("com.android.library") version "8.9.0" apply false
id("org.jetbrains.kotlin.android") version "1.8.21" apply false
id("com.android.test") version "8.2.0" apply false
id("androidx.baselineprofile") version "1.2.0" apply false
id("com.android.test") version "8.9.0" apply false
id("androidx.baselineprofile") version "1.3.3" apply false
}
buildscript {