in src/android/AudioPlayer.java [379:390]
public void pausePlaying() {
// If playing, then pause
if (this.state == STATE.MEDIA_RUNNING && this.player != null) {
this.player.pause();
this.setState(STATE.MEDIA_PAUSED);
}
else {
String errorMessage = "AudioPlayer Error: pausePlaying() called during invalid state: " + this.state.ordinal();
sendErrorStatus(MEDIA_ERR_NONE_ACTIVE, errorMessage);
}
}