In short, here is my stacktrace:
Fatal Exception: java.lang.NullPointerException: Attempt to invoke interface method 'void com.google.android.exoplayer2.source.MediaSource$Listener.onSourceInfoRefreshed(com.google.android.exoplayer2.Timeline, java.lang.Object)' on a null object reference
at com.google.android.exoplayer2.source.ExtractorMediaSource.onSourceInfoRefreshed(ExtractorMediaSource.java:179)
at com.google.android.exoplayer2.source.ExtractorMediaPeriod.maybeFinishPrepare(ExtractorMediaPeriod.java:408)
at com.google.android.exoplayer2.source.ExtractorMediaPeriod.access$000(ExtractorMediaPeriod.java:49)
at com.google.android.exoplayer2.source.ExtractorMediaPeriod$1.run(ExtractorMediaPeriod.java:120)
at android.os.Handler.handleCallback(Handler.java:751)
at android.os.Handler.dispatchMessage(Handler.java:95)
at android.os.Looper.loop(Looper.java:154)
at android.os.HandlerThread.run(HandlerThread.java:61)
at com.google.android.exoplayer2.util.PriorityHandlerThread.run(PriorityHandlerThread.java:40)
It happens when I have a list or video (RecyclerView), and scroll quickly through them (when a ViewHolder is attached to Window, it will prepare the Video with "playWhenReady = false").
Source code is from my library, so have no idea if it is OK to show it here. But let me know.
In short, here is my stacktrace:
It happens when I have a list or video (RecyclerView), and scroll quickly through them (when a ViewHolder is attached to Window, it will prepare the Video with "playWhenReady = false").
Source code is from my library, so have no idea if it is OK to show it here. But let me know.