12 questions
0
votes
0
answers
22
views
How to show call duration in android, when using Android ConnectionService Telecom
I need to trigger the call duration when a call is placed in Android using telecom. Basically the yellow call bubble with the phone icon when unlocked, and when locked, the system UI for showing call ...
0
votes
0
answers
22
views
How to mute individual Telecom Calls from InCallService
I am looking to mute/unmute all telecom Calls from the InCallService implementation. InCallService just provides a single method to mute current call. Seems CallControl is the class that provides ...
0
votes
0
answers
30
views
Correct implementation for receiving the `CallAudioState`
I would like to receive the CallAudioState during a call. I have already tried various implementations of InCallServiceCompat and InCallService. Unfortunately, I do not receive any information in ...
0
votes
0
answers
38
views
Error in OpenSIPS When Modifying Route Header to Remove Commas in BYE Method
I am working with OpenSIPS 3.1 and trying to modify the Route header in SIP messages for the BYE method. My goal is to remove all commas present in the Route header if the BYE message originates from ...
0
votes
0
answers
41
views
How to Disable the Default Calling Screen on Android using java?
I'm developing an Android application that automatically picks up incoming calls on a device (let's call it Device B). I am done with the auto-pick call. Now I want to disable the default calling ...
2
votes
2
answers
190
views
Does SM-DP+ has access to MNO specific keys in the eSIM realm?
As you know in the eSIM realm, for the customer model, SM-DP+ is responsible for loading the MNO provided profile into the eSIM chip; and, after loading such profile, the final end-user, can ...
1
vote
1
answer
120
views
How can I remove a placed call with TelecomManager.placeCall()?
I am working on an application that can manage calls. And the call provider platform is Twilio. But there is an issue when I make an outgoing call using TelecomManager.placeCall(). It works for the ...
0
votes
1
answer
308
views
Understanding Digit Repetition in Phone Numbers
I am currently working on a project that requires validation of phone numbers, and I'm curious about the potential repetition of a single digit within a phone number. In a typical phone number, how ...
0
votes
1
answer
254
views
Android telecom Connection private function (supportedAudioRoutes)
Why google dont provide this function for normal use (android.telecom.Connection)?
I need this function for disable bluetooth selection for my call. I think that in java we can use reflection for get ...
0
votes
1
answer
449
views
Can a telephone call be intercepted with React Native
Thanks for reading my post.
I work in a company that works with telecom. We have an app made with React Native. The app can do all sorts of stuff like call transfer, Do-not-disturb etc.
However, I ...
1
vote
0
answers
297
views
TelecomManager: An exception on AddNewIncomingCall()
I am trying to use Telecom features in my Xamarin.Forms app. When AddNewIncomingCall() is called, an exception is thrown:
Java.Lang.SecurityException: Package com.android.phone does not belong to ...
1
vote
0
answers
151
views
How can I integrate my video chat with Telecom?
I have a Xamarin.Forms application that has a video chat feature. Currently, a video call is made by sending push notifications using Firebase, and is answered by touching the push notification. This ...