mp=MediaPlayer.create(AlarmAlert.this, R.raw.clear);
mp.seekTo(0);
mp.start();
I use this code in my application, it’s working when i try it in android emulator.
The application size is around 356KB in emulator.
But when i install the .apk in my phone there are o sound at all and the application size only around 50 KB.
What could be the problem? Installation problem??
Thanks.
Sounds like an installation issue. How do you start/install your application? Take a look at this: .apk does not contain current icons – why?