as far as I know, there is no simple way in Android to generate a beep (equivalent to Console.Beep(int frequency, int length) in .NET). The only one that looked promising - ToneGenerator
class, can generate only a limited selection of tones.
Do I have to generate a waveform by hand, push its data to AudioTrack and play it or is there a library or open source code that does it?