Android, como reproduzir arquivos WAV programaticamente

Eu já tenho um arquivo .wav no meu diretório. ao mesmo tempo eu preciso jogar junto com um arquivo mp3. Eu usei,

String recordedFile = "/storage/sdcard0/PINOYKARAOKE/1373597371359.wav";

MediaPlayer recordedSong = new MediaPlayer();
try{
recordedSong = MediaPlayer.create(ctx, Uri.fromFile(recordedFile));
recordedSong.prepare();
recordedSong.start();
}
catch(Exception e){
}

erro: criação falhou e lança IOException

questionAnswers(2)

yourAnswerToTheQuestion