Skip to content

Commit

Permalink
pad it
Browse files Browse the repository at this point in the history
  • Loading branch information
krizzu committed Jul 22, 2024
1 parent f3e4175 commit ea8780b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions packages/website/docs/advanced/Next.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,17 +51,17 @@ For React Native below version 0.73, you need to apply Kotlin plugin to your pro
In your project's android directory, locate root build.gradle file. Add Kotlin dependency to the buildscript:

```diff
buildscript {
ext {
// other extensions
buildscript {
ext {
// other extensions
+ kotlinVersion = '1.9.24'
}
}

dependencies {
// other dependencies
dependencies {
// other dependencies
+ classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
}
}
}
}

```

Expand Down

0 comments on commit ea8780b

Please sign in to comment.