From e6684f34663e8ab9a269081d05bebe3ff32298a0 Mon Sep 17 00:00:00 2001 From: Nicola Corti Date: Wed, 20 May 2026 13:50:53 +0100 Subject: [PATCH] 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. --- template/android/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/android/build.gradle b/template/android/build.gradle index dad99b0..577f817 100644 --- a/template/android/build.gradle +++ b/template/android/build.gradle @@ -5,7 +5,7 @@ buildscript { compileSdkVersion = 36 targetSdkVersion = 36 ndkVersion = "27.1.12297006" - kotlinVersion = "2.1.20" + kotlinVersion = "2.2.0" } repositories { google()