Hi all,
I've searched a bit concerning this weird problem and I found nothing. I developped an application that run in background on the handheld. On an event, an alarm is supposed to be played. I use something like this :
Code:
I
nputStream inStream = getClass().getResourceAsStream("/alarm.mid");
mPlayer = javax.microedition.media.Manager.createPlayer(inStream,"audio/midi");
mPlayer.start(); On the simulator, the alarm is very well played on all kind of devices. I installed the application on the 8700r and a 7100t and works very well. But on the 8100, the alarm don't play as it should, only a vibration. I checked the profile, set all not to vibrate, nothing. I tried with a wave, mp3, nothing more.
Why is the program correctly playing the alarm (loudly) on my 8700 and 7100 but not on the 8100? And why does it works on the simulator?
Thanks for your help,
Jonathan