I need to launch the phone dialer on ios, android, and windows phone platform with Zebble like below screenshot.
I wrote some code to run dial pad but in Zebble, I could not access activity to start.
public async Task DialNumber()
{
if(Device.Platform == DevicePlatform.Android)
{
var intent = new Intent(Intent.ActionDial,Android.Net.Uri.Parse("tel:111111"));
StartActivity(intent);
}
}