@JarvanMo I need a callback when video is finished. I have tried with the following code but not getting callback. ` videoView.player = SimpleExoPlayer.Builder(this).build() videoView.player.addListener(object : Player.EventListener { override fun onPlayerStateChanged(playWhenReady: Boolean, playbackState: Int) { Log.d("playbackState", "" + playbackState); } })`