-1
I need to sound (beep) on the Smartphone to get the user’s attention, I’m testing only by a button initially. The codes I have tested only gives error, the last is being link here. What I did I understood 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);
}
The mistake:
The message seems very clear to me: the operation is not supported by the platform. Where is it running? It should support?
– Woss
Sorry, I had not specified well. Read the description now that you can understand better.
– Deivid Souza