I have played steamed audio using Android MediaPlayer

"
Uri myUri = Uri.parse("http://pri-ice.streamguys.biz/pri1";);

MediaPlayer mp = new MediaPlayer();

 mp.setDataSource(this, myUri); // Go to Initialized state
 mp.setAudioStreamType(AudioManager.STREAM_MUSIC);
 mp.setOnPreparedListener(this);
 @Override
public void onPrepared(MediaPlayer mp) {
Log.d(TAG, "Stream is prepared"+mp.getCurrentPosition());

mp.start();
}
"
it is working fyne with android version 2.2
But when i tried the same code with 2.3.3 and 4.1 it doesnt run at all.
Can any any one help me regarding this issue??

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to