All Questions
Tagged with incoming-call kotlin
8 questions
0
votes
0
answers
20
views
how to set CallType notification with default ringtone set for calls
I am using fcm push notification to start the calls and the connect to socket and webrtc.
I have set the normal flow with notificationChannel and set sound for that, but its still sound for default ...
0
votes
0
answers
53
views
How to open my activity when push received and when the application is in killed state
I have been assigned a task to implement a wake-up feature for a calling application. Specifically, when the app is killed and a push notification arrives indicating an incoming call, I need to open ...
-1
votes
1
answer
1k
views
Android detecting incoming calls and retrieving data
I need to detect when calls come to the phone and get the name (what is shown when the call comes in, even if it is just a number or SPAM), number and photo.
I tried to do so, in the end I had the ...
1
vote
0
answers
99
views
Is it possible to transfer sip incoming call (remote address) to the another app like another sip client apps?
If it is possible how to do I am developing sip client in android studio in kotlin for android using linphone sdk.
Thanks in Advance.
Do anyone have solution for this please share I am working on this ...
0
votes
2
answers
700
views
Incoming Phone Call notification has no ringtone sound or vibration
Method to create a Notification Channel
private fun createChannel(notificationManager: NotificationManager) {
val uri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_RINGTONE)
...
1
vote
0
answers
510
views
How can I detect a new incoming call during an active phone call programmatically in Android
I'm building an Android Dialer App and currently I'm working on a calling feature. The problem that I'm facing right now is when I'm already on a phone call and someone calls me, my app doesn't detect ...
0
votes
0
answers
94
views
How to do something when i detect missed call but NOT WHEN CALL IS REJECTED
I read this article but I want to do something only when I receive a missed call. I see that the article works in missed and rejected call. If the state was rinning and the new is idle I know that of ...
3
votes
0
answers
585
views
How to run a built-in call app when a device gets incoming call in onCallAdded(InCallService) function?
When a phone is ringing ( by an incoming call) If the phone number is a specific number I want to show my custom UI. If It is not, I want to pass it to the (built-in) system call app(Or any other call ...