I want to play an mp3 sound when my Notification
is triggered. For this, I have put an mp3 file in my "res/raw" folder and used the following instruction:
notification.sound=Uri.parse("android.resource://"+getPackageName()+"/" + R.raw.mySound);
.
But I am getting no sound when the Notifications
appears!
Any idea?