commit ce4ba124a013cea6bc09993fe617e283efb339a7
parent 4af27e7b518688b24a2ae3c84e21bc398462d54a
Author: Iván Ávalos <avalos@disroot.org>
Date: Thu, 21 Mar 2024 11:04:00 -0600
[wallet] Bump qtart to 0.9.4a+p1 and set CuRL HTTP client
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/wallet/build.gradle b/wallet/build.gradle
@@ -19,7 +19,7 @@ plugins {
id "kotlinx-serialization"
}
-def qtart_version = "0.9.4-dev.18"
+def qtart_version = "0.9.4a+p1"
static def versionCodeEpoch() {
return (new Date().getTime() / 1000).toInteger()
diff --git a/wallet/src/main/java/net/taler/wallet/backend/BackendManager.kt b/wallet/src/main/java/net/taler/wallet/backend/BackendManager.kt
@@ -17,7 +17,6 @@
package net.taler.wallet.backend
import android.util.Log
-import kotlinx.serialization.decodeFromString
import kotlinx.serialization.json.Json
import net.taler.qtart.TalerWalletCore
import net.taler.wallet.BuildConfig
@@ -52,6 +51,7 @@ class BackendManager(
// TODO using Dagger/Hilt and @Singleton would be nice as well
if (initialized.getAndSet(true)) error("Already initialized")
walletCore.setMessageHandler { onMessageReceived(it) }
+ walletCore.setCurlHttpClient()
if (BuildConfig.DEBUG) walletCore.setStdoutHandler {
Log.d(TAG_CORE, it)
}