- moved restoring of call and message history from baresip service to main activity - small cleanups
12 lines
263 B
Kotlin
12 lines
263 B
Kotlin
package com.tutpro.baresip
|
|
|
|
object Api {
|
|
|
|
external fun audio_codecs(): String
|
|
external fun call_peeruri(callp: String): String
|
|
external fun cmd_exec(cmd: String): Int
|
|
external fun contact_add(contact: String)
|
|
external fun contacts_remove()
|
|
|
|
}
|