I have 10 video i need to play, once one is done, the next one starts to play.
I\'m using Google\'s ExoPlayer, I use the example in the DEMO @ GitHub. I can play 1 video
OK, Answering my own question. on the example, google init the ExoPlayer at OnResume(). i had to re-init for every video like that:
player = ExoPlayer.Factory.newInstance(2, 1000, 5000);
if someone has a better idea, please let me know.