I'm trying to make a dialer intent and getting this error: Android.Content.ActivityNotFoundException: 'No Activity found to handle Intent { act=android.intent.action.DIAL dat=tel:xxxxxxxxxx }' This is my code:
Intent intent = new Intent();
intent.SetAction(Intent.ActionDial);
Android.Net.Uri uri = Android.Net.Uri.Parse("tel:" + "1700700848");
intent.SetData(uri);
StartActivity(intent)
I have tried to find a solution to this problem but nothing worked.