Bumped versionCode
This commit is contained in:
parent
ae59117596
commit
93d00931ac
3 changed files with 3 additions and 3 deletions
|
@ -8,7 +8,7 @@ plugins {
|
|||
def appVersionName = "4.7.0"
|
||||
// Uncomment for 4.7.0 release
|
||||
// def appVersionCode = 40700 // 4.07.00
|
||||
def appVersionCode = 40691 // 4.06.91
|
||||
def appVersionCode = 40692 // 4.06.92
|
||||
|
||||
static def getPackageName() {
|
||||
return "org.linphone"
|
||||
|
|
|
@ -130,7 +130,7 @@ class ChatRoomData(private val chatRoom: ChatRoom) : ContactDataInterface {
|
|||
if (chatRoom.participants.isNotEmpty()) {
|
||||
chatRoom.participants[0].address
|
||||
} else {
|
||||
Log.e("[Chat Room] $chatRoom doesn't have any participant (state ${chatRoom.state})!")
|
||||
Log.e("[Chat Room] ${chatRoom.peerAddress} doesn't have any participant (state ${chatRoom.state})!")
|
||||
null
|
||||
}
|
||||
}
|
||||
|
|
|
@ -295,7 +295,7 @@ class ChatRoomViewModel(val chatRoom: ChatRoom) : ViewModel(), ContactDataInterf
|
|||
if (chatRoom.participants.isNotEmpty()) {
|
||||
chatRoom.participants[0].address
|
||||
} else {
|
||||
Log.e("[Chat Room] $chatRoom doesn't have any participant (state ${chatRoom.state})!")
|
||||
Log.e("[Chat Room] ${chatRoom.peerAddress} doesn't have any participant (state ${chatRoom.state})!")
|
||||
null
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue