Record and play simultaneously on iOS (Phonegap build)
I'm developing iOS and Android application using Phonegap Build version 3.3.0. Main focus of application is audio recording with another audio / music playing in the background. For both instances i'm using phonegap media api with correct audio files for recording (iOs - *.wav / Android - *.amr ) and playing (iOs and Android - *.mp3). Example: var audioRec = new Media(audioRecSrc, onSuccess, onError); audioRec.startRecord(); var audioPlay = new Media(audioPlaySrc, onSuccess, onError); audioPlay.play(); Example works on Android without any problem. Sound is recorded and music played normally.