PupoSDC

Results 19 comments of PupoSDC

How are things going @sbeca ? Do you need some help pushing PRs over the edge? I could really use some of the things in the open PRs merged :(

Hey @sayem314 Opened a PR that should address your issue: https://github.com/johnsonsu/react-native-sound-player/pull/122 I haven't had the time to test it on `ios`, but on `android` it works as expected: ```jsx import...

@johnsonsu we just bumped to the newest version and we are getting a very suspicious error: ![image](https://user-images.githubusercontent.com/9625304/121378279-58847680-c943-11eb-8589-c8ae37623b31.png) Could it be because of these changes?

Im also struggling a lot with this: https://github.com/tanguyantoine/react-native-music-control/issues/377 Im still investigating, but so far I've realized the library does not work until you stop the controls once (lol). And since...

I finally got my hands on a real ios device, and unfortunately my rather hackish solution above only works on an emulator, not on a real device :(

This is my current PoC with the basic needs of my project: https://github.com/PupoSDC/react-native-multimedia-demo it includes a video and audio player in which both are controlled via the native music controls....

yeay! I think the root cause of all this silliness, is that most of these audio libraries also fiddle with the native controls in way or the other, and they...

After some back and forwarding we discovered the above solution / hack only works in development mode. as soon as the app is built, it stops working :( If anyone...

The IOS specific formula that worked for me ended up looking something like: ```ts MusicControl.handleAudioInterruptions(true); MusicControl.setNowPlaying(data); MusicControl.enableBackgroundMode(true); MusicControl.enableControl(Command.play, true); MusicControl.enableControl(Command.pause, true); MusicControl.enableControl(Command.closeNotification, true, { when: 'always', }); MusicControl.enableControl(Command.skipBackward, !!onSkipBackward, {...

Hi @vedamet, Unfortunately I can't be super useful, Im no longer working on this project, so I am working a bit out of memory + my own notes. I'm not...