I have this toast to show up and everything is fine except audio. I was trying to put toast.mp3 in different locations like projects main folder, Assets etc. and even used path like D:/MyProjectPath/Assets/toast.mp3 and still notification is silent. I am a beginner so maybe I miss something... And of course I've looked for solution but nothing has been helpful.Here is my code:
string xml = $@"<toast scenario=""reminder"">
<visual>
<binding template=""ToastGeneric"">
<text>{name}</text>
<text>{quantity} {unit}</text>
<text>{beforeorafter}</text>
</binding>
</visual>
<actions>
<input id=""snoozeTime"" type=""selection"" defaultInput=""10"">
<selection id=""5"" content=""5 minutes""/>
<selection id=""10"" content=""10 minutes""/>
<selection id=""15"" content=""15 minutes""/>
</input>
<action activationType=""system"" arguments=""snooze"" hint-inputId=""snoozeTime"" content=""""/>
<action activationType=""system"" arguments=""dismiss"" content=""""/>
</actions>
<audio src = ""ms-appx:///Assets/toast.mp3"" loop = ""true""></audio>
</toast>";