... | ... | @@ -9,9 +9,9 @@ The ListenersProvider Class interacts with the SIPProvider to communicate with t |
|
|
>In **Kotlin**
|
|
|
```kotlin
|
|
|
ListenersProvider.sdkServiceListener = object : SDKServiceListener{
|
|
|
override fun startIncomingCall(callid: String, callerID: String) {
|
|
|
TODO("Use the callid to accept or decline the incoming call " +
|
|
|
"and callerID in the UI to show who is calling")
|
|
|
override fun startIncomingCall(callId: String, phoneNumber: String) {
|
|
|
TODO("Use the callIdto accept or decline the incoming call " +
|
|
|
"and phoneNumber in the UI to show who is calling")
|
|
|
}
|
|
|
}
|
|
|
```
|
... | ... | |