build: fix output file name, dialer: don't display new version alert
This commit is contained in:
parent
8c7bbd92dd
commit
5d4179ac96
3 changed files with 3 additions and 3 deletions
|
@ -94,7 +94,7 @@ android {
|
|||
|
||||
applicationVariants.all { variant ->
|
||||
variant.outputs.all {
|
||||
outputFileName = "linphone-android-${variant.buildType.name}-${project.version}.apk"
|
||||
outputFileName = "difuse-phone-android-${variant.buildType.name}-${project.version}.apk"
|
||||
}
|
||||
|
||||
var enableFirebaseService = "false"
|
||||
|
|
|
@ -151,7 +151,7 @@ class DialerFragment : SecureFragment<DialerFragmentBinding>() {
|
|||
viewLifecycleOwner
|
||||
) {
|
||||
it.consume { url ->
|
||||
displayNewVersionAvailableDialog(url)
|
||||
// displayNewVersionAvailableDialog(url)
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -82,7 +82,7 @@ class CoreService : CoreService() {
|
|||
// Done elsewhere
|
||||
}
|
||||
|
||||
override fun showForegroundServiceNotification() {
|
||||
override fun showForegroundServiceNotification(isVideoCall: Boolean) {
|
||||
Log.i("[Service] Starting service as foreground")
|
||||
coreContext.notificationsManager.startCallForeground(this)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue