From 2edbddb16ea7ab86ef51649da899e8c9888fdf3a Mon Sep 17 00:00:00 2001 From: Juha Heinanen Date: Sun, 7 May 2023 14:19:53 +0300 Subject: [PATCH] Added InCallService --- .../main/java/com/tutpro/baresip/InCallService.kt | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 app/src/main/java/com/tutpro/baresip/InCallService.kt diff --git a/app/src/main/java/com/tutpro/baresip/InCallService.kt b/app/src/main/java/com/tutpro/baresip/InCallService.kt new file mode 100644 index 00000000..fd31969e --- /dev/null +++ b/app/src/main/java/com/tutpro/baresip/InCallService.kt @@ -0,0 +1,14 @@ +package com.tutpro.baresip + +import android.app.Service +import android.content.Intent +import android.os.IBinder + +// This is needed in order to allow choosing baresip as default Phone app + +class InCallService : Service() { + + override fun onBind(intent: Intent): IBinder { + TODO("Return the communication channel to the service.") + } +} \ No newline at end of file