version: bump to 1.0.1 (52001), more: android auto removes
This commit is contained in:
parent
0187310472
commit
8047644798
4 changed files with 12 additions and 12 deletions
|
@ -6,8 +6,8 @@ plugins {
|
||||||
id 'org.jetbrains.kotlin.android'
|
id 'org.jetbrains.kotlin.android'
|
||||||
}
|
}
|
||||||
|
|
||||||
def appVersionName = "1.0.0"
|
def appVersionName = "1.0.1"
|
||||||
def appVersionCode = 52000
|
def appVersionCode = 52001
|
||||||
|
|
||||||
def packageName = "org.difusephone"
|
def packageName = "org.difusephone"
|
||||||
|
|
||||||
|
|
|
@ -538,9 +538,11 @@ class ConferenceViewModel : ViewModel() {
|
||||||
var foundActivelySpeakingParticipantDevice = false
|
var foundActivelySpeakingParticipantDevice = false
|
||||||
speakingParticipantFound.value = false
|
speakingParticipantFound.value = false
|
||||||
|
|
||||||
val conferenceInfo = conference.core.findConferenceInformationFromUri(
|
val conferenceInfo = conference.conferenceAddress?.let {
|
||||||
conference.conferenceAddress
|
conference.core.findConferenceInformationFromUri(
|
||||||
)
|
it
|
||||||
|
)
|
||||||
|
}
|
||||||
var allSpeaker = true
|
var allSpeaker = true
|
||||||
for (info in conferenceInfo?.participantInfos.orEmpty()) {
|
for (info in conferenceInfo?.participantInfos.orEmpty()) {
|
||||||
if (info.role == Participant.Role.Listener) {
|
if (info.role == Participant.Role.Listener) {
|
||||||
|
|
|
@ -93,9 +93,11 @@ class LinphoneUtils {
|
||||||
|
|
||||||
fun getConferenceSubject(conference: Conference): String? {
|
fun getConferenceSubject(conference: Conference): String? {
|
||||||
return if (conference.subject.isNullOrEmpty()) {
|
return if (conference.subject.isNullOrEmpty()) {
|
||||||
val conferenceInfo = coreContext.core.findConferenceInformationFromUri(
|
val conferenceInfo = conference.conferenceAddress?.let {
|
||||||
conference.conferenceAddress
|
coreContext.core.findConferenceInformationFromUri(
|
||||||
)
|
it
|
||||||
|
)
|
||||||
|
}
|
||||||
if (conferenceInfo != null) {
|
if (conferenceInfo != null) {
|
||||||
conferenceInfo.subject
|
conferenceInfo.subject
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -1,4 +0,0 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<automotiveApp>
|
|
||||||
<uses name="notification" />
|
|
||||||
</automotiveApp>
|
|
Loading…
Reference in a new issue