I would like to play a http live steaming link(.m3u8) on android. Can you please let me know how to write code for that (snippet)?
I tried the following(on Activity's onCreate event) but it wouldnt work (says Cant play video) :
VideoView vv = new VideoView(this);
Uri uri =Uri.parse("http://devimages.apple.com/iphone/samples/bipbop/gear1/prog_index.m3u8");
vv.setVideoURI(uri);
setContentView(vv);
note: using emulator for testing thanks for the help