My Application still plays the sounds when My Phone is on silent.
I think it is because I am using media Player.
MediaPlayer mAlarmPlayer = MediaPlayer.create(ConnectingActivity.this, R.raw.echo_affirm1);
mAlarmPlayer.start();
What Alternative am I meant to be using which forces it to comply with the phones current audio state?
In other words what I am looking for, Is the app must not make a sound when the phone is on silent. And if the phone is in normal mode then my tones can be played.