I would like my app beep with a specific frequency and duration. In the windows equivalent of this app (written in c#) I used a c++ dll with the function
beep(frequency, duration);
Is this the same in android? Or at least how can I put my c++ dll in the project?
I would prefer not to use pre-built mp3's or system sound because I would like to give the user the choice of the frequency and duration.