asos-luisalcantara
asos-luisalcantara
I tried to release the player instance ``` DisposableEffect(Unit) { onDispose { exoPlayer.release() } } ``` Problem is still present
I'm using the same video URL and have implemented caching, but I'm still getting the same result. I checked the ExoPlayer logs—the player is loading correctly, but the surface remains...
Could we have a memory leak on ``` @Composable private fun PlayerSurfaceInternal( player: Player, modifier: Modifier, createView: (Context) -> T, onReset: ((T) -> Unit)? = null, setViewOnPlayer: (Player, T) ->...
So issue is when PlayerSurface is in a list..??
@oceanjules My video array is just 5 items .. No should not be change I am using just the same video.
@bubenheimer I found that the issue was caused by the remember block being called multiple times. ``` LazyRow { items( items = videos, key = { url -> url }...