Skip to content

Commit

Permalink
Small improvement (#125)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ifropc authored Feb 13, 2024
1 parent bb3bfcd commit 8f21686
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ val jvmVersion = JavaVersion.VERSION_11

allprojects {
group = "org.stellar.wallet-sdk"
version = "1.2.0"
version = "1.2.1"
}

subprojects {
Expand Down
4 changes: 4 additions & 0 deletions wallet-sdk/src/main/kotlin/org/stellar/walletsdk/Wallet.kt
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,10 @@ data class ApplicationConfiguration(
val defaultClientDomain: String? = null,
val defaultClientConfig: ClientConfigFn = {}
) {
companion object {
val useHttp: ClientConfigFn = { defaultRequest { url { protocol = URLProtocol.HTTP } } }
}

val defaultClient =
HttpClient(OkHttp) {
install(ContentNegotiation) { json(defaultJson) }
Expand Down

0 comments on commit 8f21686

Please sign in to comment.