HamidrezaAmz / MagicalExoPlayer

The Easiest Way To Play/Stream Video And Audio Using Google ExoPlayer In Your Android Application
MIT License
345 stars 77 forks source link

Create event OnErrorListener #6

Closed hieulbp closed 5 years ago

hieulbp commented 5 years ago

Please add an event OnErrorListener for users to easily interact in MainActivity ^^

HamidrezaAmz commented 5 years ago

New interface added. Update your library ex:

       andExoPlayerView.setExoPlayerCallBack(new ExoPlayerCallBack() {
            @Override
            public void onError() {
                // Do your staff ;)
            }
        });