https://www.amazon.com/dp/B07GB24XSZ/?tag=stackoverflow17-20
I want to play song one after one. Now I am able to play one mp3 at a time, but I want to play 10 mp3 one after one.
PlayMusicIntent': function() {
const songArr = data;
const songIndex = Math.floor(Math.random() * songArr.length);
const randomSong = songArr[songIndex];
this.emit(':tell','Playing Laugh Music, <audio src=randomSong/>');
}
Also Hi, I have created my first alexa app but its not showing in Indian store. (amazon.in) Any reason? Did I missed anything while uploading this ?