Skip to content

Commit

Permalink
Kotlin to 1.9.22 (#42927)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: facebook/react-native#42927

This bumps Kotlin to 1.9.22 which is the latest in OSS and closer to the version we use inside fbsource.

Turns out that Explicit API mode was not enabled correctly, so I had to go over all the Kotlin classes
and correctly set them to `public` if they were intended to be for public consumption.

I updated some of them to `private` or `internal` but otherwise I've defaulted to `public` which is the default
we have right now.

Changelog:
[Android] [Changed] - Kotlin to 1.9.22

Reviewed By: cipolleschi

Differential Revision: D53576844

fbshipit-source-id: dd8b08ce9bf87f738159f60fd850e3e3bc490ebc

Original: facebook/react-native@3c2b2b1
  • Loading branch information
cortinico authored and facebook-github-bot committed Feb 9, 2024
1 parent d17df43 commit de4f977
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion template/template/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ buildscript {
compileSdkVersion = 34
targetSdkVersion = 34
ndkVersion = "26.1.10909125"
kotlinVersion = "1.8.0"
kotlinVersion = "1.9.22"
}
repositories {
google()
Expand Down

0 comments on commit de4f977

Please sign in to comment.