Jonathan Puckey
Jonathan Puckey
Have any of you made sure this issue is specific to `react-native-track-player`?
are you able to reproduce this using the example app?
@jacobbednarz I am experiencing this issue too. Can I send you our state file privately somehow?
PR here https://github.com/doublesymmetry/react-native-track-player/pull/2522
I updated the example app to `0.76.2`, which should have fixed the remaining timer issues through https://github.com/facebook/react-native/commit/ee7b4e276355146be53958b402bfb2d5af2dd1bc. @smfunder would you like to verify?
> typescript keep yelling if i use this branch. any idea why? but its work tho What error are you seeing?
please fill in the issue template correctly
> I'm also experiencing this issue with turbo `2.3.1`. In my case, in addition to the solution provided [here](https://github.com/vercel/turborepo/issues/9120#issuecomment-2530757058), I also had to: > > * patch the pnpm lock...
See https://github.com/puckey/react-native-track-player/commit/328943e9b5b6400aebfb8401fbae2c1c12c38ad4 to get TrackPlayer.load working on Android. Note that I haven't checked if this fixes PlaybackActiveTrackChanged also
Looking at https://developer.android.com/media/media3/exoplayer/hls#using-mediaitem, exoplayer can also autodetect these based on the url. See their example code: ```kt // Create a player instance. val player = ExoPlayer.Builder(context).build() // Set the media...