Is there some default, safe to use, "beep beep"-styled ringtone on Andrid phones?
I have the following code
final Ringtone alarm = RingtoneManager.getRingtone(getActivity(), RingtoneManager.getDefaultUri(RingtoneManager.TYPE_ALARM));
alarm.setStreamType(AudioManager.STREAM_ALARM);
alarm.play();
It plays the alarm ringtone which wakes me up at morning, which is some soothing music. But I need something more alarming.
Sure, I can pack some sound file to apk, but I'd prefer to use some sounds already available on devices.
Check my answer here:
How do I access Android's default beep sound?
here is a way to list all notifications sound you have in your device
after finding 'Helium' ringtone, use its Uri to play it: