C
C#11mo ago
Florian Voß

❔ start Phone call in .Net MAUI

if(PhoneDialer.Default.IsSupported){
PhoneDialer.Default.Open(phonenumber);
}
if(PhoneDialer.Default.IsSupported){
PhoneDialer.Default.Open(phonenumber);
}
I am debugging on windows right now. The debugger enters the if clause but doesnt open the dialer app. No exception getting thrown, what's wrong??
2 Replies
Florian Voß
Florian Voß11mo ago
I can pretty much guarantee that the issue with phone dialer is not a threading issue as I've tried both running it on worker thread with Task.Run() and running on UI thread with Dispatcher.Dispatch(). I'm pretty lost...
Accord
Accord11mo ago
Looks like nothing has happened here. I will mark this as stale and this post will be archived until there is new activity.