Skip to content

Commit

Permalink
Merge pull request #131 from /issues/130
Browse files Browse the repository at this point in the history
Issue #130
  • Loading branch information
vazarkevych committed Aug 22, 2024
2 parents 2d637ae + 391343b commit 776a9e2
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions NetworkDispatcherOkHttp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,27 +21,26 @@ kotlin {
}

sourceSets {
val okhttpVersion = "4.9.2"

val commonMain by getting {
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0")
api("com.squareup.okhttp3:okhttp:4.9.0")
implementation("com.squareup.okhttp3:okhttp-sse:4.9.0")

// https://mvnrepository.com/artifact/com.google.code.gson/gson
//implementation("com.google.code.gson:gson:2.11.0")
api("com.squareup.okhttp3:okhttp:$okhttpVersion")
implementation("com.squareup.okhttp3:okhttp-sse:$okhttpVersion")

implementation("io.growthbook.sdk:Core:1.0.1")
}
}
val androidMain by getting {
dependencies {
implementation("com.squareup.okhttp3:okhttp:4.9.0")
implementation("com.squareup.okhttp3:okhttp:$okhttpVersion")
}
}
val androidTest by getting {
dependencies {
implementation(kotlin("test-junit"))
implementation("com.squareup.okhttp3:mockwebserver:4.9.0")
// implementation("com.squareup.okhttp3:mockwebserver:$okhttpVersion")
}
}
}
Expand Down

0 comments on commit 776a9e2

Please sign in to comment.