Skip to content

Commit 2abe531

Browse files
committed
Fix Gradle build failure by updating Kotlin and AGP versions
- Update Kotlin from 1.9.24 to 2.0.0 - Update Android Gradle Plugin from 8.3.0 to 8.5.0 This resolves the BuildFlowService compatibility issue that was causing build failures with Gradle 8.9.
1 parent 14bddf3 commit 2abe531

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22

33
buildscript {
4-
ext.kotlin_version = '1.9.24'
4+
ext.kotlin_version = '2.0.0'
55

66
repositories {
77
google()
88
mavenCentral()
99
}
1010

1111
dependencies {
12-
classpath 'com.android.tools.build:gradle:8.3.0'
12+
classpath 'com.android.tools.build:gradle:8.5.0'
1313
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1414

1515
// NOTE: Do not place your application dependencies here; they belong

0 commit comments

Comments
 (0)