- added handling of call security including update of status icon

- added security and zid variables to Call object
- added media encryption variable to Account object
This commit is contained in:
Juha Heinanen
2018-05-08 14:29:20 +03:00
parent e84c3315dd
commit 9210e2b21a
3 changed files with 211 additions and 54 deletions
@@ -5,4 +5,6 @@ import android.text.TextWatcher
class Call(val ua: String, val call: String, val peerURI: String, var status: String,
val dtmfWatcher: TextWatcher?) {
var hold: Boolean = false
var security: Int = 0
var zid: String = ""
}