From 4ddb3498fb8d476eb10363218f57d9d783dfe14a Mon Sep 17 00:00:00 2001 From: hx2ryu Date: Tue, 16 Apr 2024 18:03:18 +0900 Subject: [PATCH] fix: rename the 'kotlin_version' to 'kotlinVersion' --- example/android/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example/android/build.gradle b/example/android/build.gradle index 84f3b0a97..84d603fef 100644 --- a/example/android/build.gradle +++ b/example/android/build.gradle @@ -6,7 +6,7 @@ buildscript { minSdkVersion = 24 compileSdkVersion = 33 targetSdkVersion = 33 - kotlin_version = '1.8.0' + kotlinVersion = '1.8.0' // We use NDK 23 which has both M1 support and is the side-by-side NDK version from AGP. ndkVersion = "23.1.7779620" @@ -16,7 +16,7 @@ buildscript { mavenCentral() } dependencies { - classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version") + classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion") classpath("com.android.tools.build:gradle:7.3.1") classpath("com.facebook.react:react-native-gradle-plugin") }