From ffe67691fe7ad995113eacb0ee5785f51e0051de Mon Sep 17 00:00:00 2001 From: Torsten Grote Date: Tue, 27 Sep 2022 17:56:05 -0300 Subject: [wallet] Don't run qtart in a separate process This required IPC and the mechanism chosen was limiting us to transferring 1MB (or less!) to/from wallet-core. Now we simply run it in an IO thread. The should be no functional difference (except new bugs introduced when swapping in a new mechanism). The second process with qtart running in WalletBackendService also got killed when the OS killed our main process. --- wallet/src/main/java/net/taler/wallet/WalletApp.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'wallet/src/main/java/net/taler/wallet/WalletApp.kt') diff --git a/wallet/src/main/java/net/taler/wallet/WalletApp.kt b/wallet/src/main/java/net/taler/wallet/WalletApp.kt index 1076364..1384f76 100644 --- a/wallet/src/main/java/net/taler/wallet/WalletApp.kt +++ b/wallet/src/main/java/net/taler/wallet/WalletApp.kt @@ -19,7 +19,7 @@ package net.taler.wallet import android.app.Application import com.google.android.material.color.DynamicColors -class WalletApp: Application() { +class WalletApp : Application() { override fun onCreate() { super.onCreate() DynamicColors.applyToActivitiesIfAvailable(this) -- cgit v1.2.3