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.