Bump Kotlin version to 1.6.10 (#32936)

Summary:
Bump Kotlin version to 1.6.10 with changes:

https://kotlinlang.org/docs/whatsnew16.html

Primarily:

- stabilization to several language features
- various type inference improvements
- support for annotations on class type parameters

## Changelog

[Android] [Changed] - Bump Kotlin version to 1.6.10

Pull Request resolved: https://github.com/facebook/react-native/pull/32936

Reviewed By: ShikaSD

Differential Revision: D33708397

Pulled By: cortinico

fbshipit-source-id: a09b4504c194676d18a749c5e297b7598e5f32b4
This commit is contained in:
AKB48 2022-01-21 07:44:31 -08:00 committed by Facebook GitHub Bot
parent 37e5cc966f
commit d0f0234656
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ org.gradle.jvmargs=-Xmx4g -XX:MaxPermSize=2048m -XX:+HeapDumpOnOutOfMemoryError
org.gradle.parallel=true
android.useAndroidX=true
kotlin_version=1.5.31
kotlin_version=1.6.10
# Use this property to specify which architecture you want to build.
# You can also override it from the CLI using

View File

@ -9,7 +9,7 @@ import org.gradle.api.internal.classpath.ModuleRegistry
import org.gradle.configurationcache.extensions.serviceOf
plugins {
kotlin("jvm") version "1.5.31"
kotlin("jvm") version "1.6.10"
id("java-gradle-plugin")
}