i´m having so many problem to integrate ExoPlayer to my project.
I have add all library files and i don´t know how configure to play a url with .mp4 file.
Now i use this method to play URL with mp4:
String uri = data.urlserver + datafile.getMedia_url_one();
mediaController.setAnchorView(zoomVideoView);
zoomVideoView.setVideoPath(uri.replaceAll(" ", "%20"));
zoomVideoView.setMediaController(mediaController);
zoomVideoView.requestFocus();
zoomVideoView.start();
I have no idea how to implement to ExoPlayer play the videos.
Thank You!