Skip to content

Commit aa437e7

Browse files
docs: changes to migration docs for 0.17.0 release
1 parent da03f72 commit aa437e7

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

MIGRATING.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,12 @@ There are no JavaScript API changes in this release, but **Android projects must
3333

3434
### Step 1: Update your Android build toolchain
3535

36-
React Native's default Android Gradle Plugin and Kotlin Gradle Plugin versions are not new enough for this release, so you must override them in your Android project.
36+
React Native's default Android Gradle Plugin and Kotlin Gradle Plugin versions are not yet new enough for this release, so you must override them in your Android project.
3737

3838
> [!NOTE]
39-
> This is a temporary compatibility requirement. Future React Native releases are expected to update their default AGP and Kotlin plugin versions.
39+
> This is currently required because the latest React Native release (`0.86.0`) still does not provide new enough default AGP and Kotlin plugin versions. This should be temporary, as future React Native releases are expected to update these defaults.
40+
>
41+
> Some Android dependencies in your app may not yet be compatible with these manual toolchain upgrades. If upgrading AGP/Kotlin causes build or compatibility issues in your project, we recommend staying on `0.16.x` of this package until those dependencies are updated.
4042
4143
#### Minimum required versions
4244

@@ -52,7 +54,7 @@ If your app uses a root `build.gradle` with a `buildscript` block, update it lik
5254
buildscript {
5355
ext {
5456
- kotlinVersion = "<old version>"
55-
+ kotlinVersion = "2.3.0"
57+
+ kotlinVersion = "2.3.21"
5658
}
5759
dependencies {
5860
- classpath("com.android.tools.build:gradle")

example/android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ buildscript {
2525
compileSdkVersion = 36
2626
targetSdkVersion = 36
2727
ndkVersion = "27.1.12297006"
28-
kotlinVersion = "2.3.0"
28+
kotlinVersion = "2.3.21"
2929
}
3030
repositories {
3131
google()

0 commit comments

Comments
 (0)