Skip to content

Commit

Permalink
fix: correct gradle import instructions in get-started.mdx (#2599)
Browse files Browse the repository at this point in the history
While integrating this on Android, I found that the suggested gradle
import changes weren't correct on the [Get Started
page](https://react-native-iap.dooboolab.com/docs/get-started#with-androidx).

I have made the correction in this PR.
  • Loading branch information
SufianBabri authored Nov 4, 2023
1 parent 4ca3201 commit 3ad2a14
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions docs/docs/get-started.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,10 @@ buildscript {
+ minSdkVersion = 24
+ kotlinVersion = "1.8.0"
}
}

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

Expand Down

0 comments on commit 3ad2a14

Please sign in to comment.