Skip to content

Commit

Permalink
fix: fix kotlin corutines to 1.8.0 instead of binding to kotlin versi…
Browse files Browse the repository at this point in the history
  • Loading branch information
mfazekas authored Apr 28, 2024
1 parent 7737dfe commit 81c4be1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -143,8 +143,8 @@ dependencies {
implementation "com.facebook.react:react-native:+"

// kotlin coroutines
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:${rootProject.ext.has('kotlinVersion') ? rootProject.ext.get('kotlinVersion') : '1.6.21'}"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:${rootProject.ext.has('kotlinVersion') ? rootProject.ext.get('kotlinVersion') : '1.6.21'}"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:${safeExtGet('kotlinxCoroutinesCoreVersion', '1.8.0')}"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:${safeExtGet('kotlinxCoroutinesAndroidVersion', '1.8.0')}"

// Mapbox SDK
customizableDependencies('RNMapboxMapsLibs') {
Expand Down

0 comments on commit 81c4be1

Please sign in to comment.