I want to play music from the receiver instead of loud-speaker, I use below code:
am.setMode(AudioManager.MODE_IN_CALL);
mMediaPlayer = MediaPlayer.create(this, R.raw.src2k);
mMediaPlayer.setLooping(true);
mMediaPlayer.start();
It works well in android 4.2, but it does not work in android 5.1, at android 5.1 it still play from loud-speaker. I have tested several cell phones at android 4.2 and 5.1. Anyone can give me some advice? Thanks.