Skip to content

Commit 2bcfc56

Browse files
build(deps): Upgrade to Gradle 9.1 and AGP 9.0.0
This commit upgrades the project's build system. - Bumps the Android Gradle Plugin (AGP) version from 8.13.2 to 9.0.0. - Upgrades the Gradle wrapper from version 8.13 to 9.1.0. - Adds several new Android build flags to `gradle.properties` to ensure compatibility and manage new behaviors introduced in AGP 9.0.
1 parent b0b506f commit 2bcfc56

3 files changed

Lines changed: 13 additions & 3 deletions

File tree

gradle.properties

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,14 @@ android.enableJetifier=false
2222
kotlin.code.style=official
2323
org.gradle.unsafe.configuration-cache=true
2424
android.nonTransitiveRClass=false
25-
android.nonFinalResIds=false
25+
android.nonFinalResIds=false
26+
android.defaults.buildfeatures.resvalues=true
27+
android.sdk.defaultTargetSdkToCompileSdkIfUnset=false
28+
android.enableAppCompileTimeRClass=false
29+
android.usesSdkInManifest.disallowed=false
30+
android.uniquePackageNames=false
31+
android.dependency.useConstraints=true
32+
android.r8.strictFullModeForKeepRules=false
33+
android.r8.optimizedResourceShrinking=false
34+
android.builtInKotlin=false
35+
android.newDsl=false

gradle/libs.versions.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# gradle/libs.versions.toml
22

33
[versions]
4-
agp = "8.13.2"
4+
agp = "9.0.0"
55
kotlin = "2.3.0"
66
viewpager2 = "1.1.0"
77
junit = "4.13.2"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Fri Mar 07 13:23:24 GMT 2025
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
4-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
4+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
55
zipStoreBase=GRADLE_USER_HOME
66
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)