we play a sound effect in our windows phone notification. the sound plays normally but after that, the speaker seems to be still turned on and we can hear a noice. Here the code:
var soundEffect = SoundEffect.FromStream(_soundStream);
FrameworkDispatcher.Update();
soundEffect.Play();
We also tried to keep an instance of SoundEffect
or even tried it using a SoundEffectInstance
, but the result ist the same.
We are testing on Nokia Lumia 520, but the noice problem occures on other device models as well.