From f1ba8db207696336cc6ad93ba6ed1d057bc16e05 Mon Sep 17 00:00:00 2001 From: Juha Heinanen Date: Thu, 15 Sep 2022 08:57:46 +0300 Subject: [PATCH] No need to call exitProcess at Quit (causes crash) --- app/src/main/kotlin/com/tutpro/baresip/BaresipService.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/kotlin/com/tutpro/baresip/BaresipService.kt b/app/src/main/kotlin/com/tutpro/baresip/BaresipService.kt index 1bcd2228..0f371f5b 100644 --- a/app/src/main/kotlin/com/tutpro/baresip/BaresipService.kt +++ b/app/src/main/kotlin/com/tutpro/baresip/BaresipService.kt @@ -331,7 +331,7 @@ class BaresipService: Service() { else stopForeground(STOP_FOREGROUND_REMOVE) stopSelf() - exitProcess(0) + // exitProcess(0) } } }