mirror of
https://github.com/facebook/react-native.git
synced 2024-11-21 22:10:14 +00:00
RN project wide Kotlin version (#31645)
Summary: This PR sets project wide Kotlin version to 1.4.21, supported in Buck https://github.com/facebook/buck/tree/dev/third-party/java/kotlin. We had to specify version for both kotlin-dsl and kotlin('jvm') plugins to remove version mismatch warnings in **react-native-gradle-plugin**. Also I expect more Kotlin code in RN, so instead of specifying version for each sub-project it's better to have project wide setting. We don't need to load Kotlin in react-native-gradle-plugin because Kotlin is available RN project wide. ## Changelog [Internal] [Changed] - Project wide Kotlin version set to 1.4.21 Pull Request resolved: https://github.com/facebook/react-native/pull/31645 Test Plan: Everything works as expected, no visible change for developers. Reviewed By: yungsters Differential Revision: D28991440 Pulled By: ShikaSD fbshipit-source-id: 971fa6f50c12d916a56d0dcde7c65299496fb68a
This commit is contained in:
parent
25e8fbe8ff
commit
9a5e22650a
@ -12,9 +12,10 @@ buildscript {
|
||||
mavenCentral()
|
||||
}
|
||||
dependencies {
|
||||
val kotlin_version: String by project
|
||||
classpath("com.android.tools.build:gradle:4.2.1")
|
||||
classpath("de.undercouch:gradle-download-task:4.1.1")
|
||||
|
||||
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version")
|
||||
// NOTE: Do not place your application dependencies here; they belong
|
||||
// in the individual module build.gradle files
|
||||
}
|
||||
|
@ -6,3 +6,4 @@ org.gradle.parallel=true
|
||||
|
||||
ANDROID_NDK_VERSION=20.1.5948944
|
||||
android.useAndroidX=true
|
||||
kotlin_version=1.4.21
|
||||
|
@ -8,7 +8,6 @@
|
||||
plugins {
|
||||
`java-gradle-plugin`
|
||||
`kotlin-dsl`
|
||||
kotlin("jvm") version "1.4.20"
|
||||
}
|
||||
|
||||
repositories {
|
||||
|
Loading…
Reference in New Issue
Block a user