I have created the push notification application, I\'m getting the message from GCM services but push notification sound is not working. I need to play sound when I\'m getting n
Uri notification = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
Ringtone r = RingtoneManager.getRingtone(getApplicationContext(), notification);
r.play();