build: fix output file name, dialer: don't display new version alert

This commit is contained in:
hayzamjs 2024-04-04 15:23:23 +05:30
parent 8c7bbd92dd
commit 5d4179ac96
Signed by: hayzam
GPG key ID: 13B4C5B544B53947
3 changed files with 3 additions and 3 deletions

View file

@ -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"

View file

@ -151,7 +151,7 @@ class DialerFragment : SecureFragment<DialerFragmentBinding>() {
viewLifecycleOwner
) {
it.consume { url ->
displayNewVersionAvailableDialog(url)
// displayNewVersionAvailableDialog(url)
}
}

View file

@ -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)
}