I need to sound (beep) on the Smartphone to get the user's attention, I'm just testing for a button initially. The codes I've tested only give error, the last one being the here link. What I did from what I understand is below:
//Botão Som
private void Som_Clicked(object sender, EventArgs e)
{
var player = Plugin.SimpleAudioPlayer.CrossSimpleAudioPlayer.Current;
player.Load("Glass_audio.mp3");
player.Play();
Task.Delay(10000);
}
Theerror: