Skip to content

Commit e6684f3

Browse files
committed
fix: align kotlinVersion with react-native-gradle-plugin
The `kotlinVersion` ext property was set to 2.1.20 while the react-native-gradle-plugin included build brings kotlin-gradle-plugin 2.2.0 on the classpath. This mismatch causes third-party libraries that read `rootProject.ext.kotlinVersion` to resolve incompatible KSP versions, breaking Android builds.
1 parent 620f5a4 commit e6684f3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

template/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
compileSdkVersion = 36
66
targetSdkVersion = 36
77
ndkVersion = "27.1.12297006"
8-
kotlinVersion = "2.1.20"
8+
kotlinVersion = "2.2.0"
99
}
1010
repositories {
1111
google()

0 commit comments

Comments
 (0)