Added InCallService

This commit is contained in:
Juha Heinanen
2023-05-07 14:19:53 +03:00
parent 91b04ef221
commit 2edbddb16e

View File

@ -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.")
}
}