Uri to default sound notification?
try using RingtoneManager to get Default Notification Uri as:
Uri uri= RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
builder.setSound(uri);
builder.setSound(Settings.System.DEFAULT_NOTIFICATION_URI)
works as well