react-native-audio-api 0.7.0-nightly-373e473-20250804 → 0.7.0-nightly-b7b8078-20250805

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -46,7 +46,9 @@ static NSString *NotificationManagerContext = @"NotificationManagerContext";
46
46
  name:AVAudioSessionSilenceSecondaryAudioHintNotification
47
47
  object:nil];
48
48
 
49
- [self startPollingSecondaryAudioHint];
49
+ dispatch_async(dispatch_get_main_queue(), ^{
50
+ [self startPollingSecondaryAudioHint];
51
+ });
50
52
  }
51
53
 
52
54
  // WARNING: this does not work in a simulator environment, test it on a real device
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-audio-api",
3
- "version": "0.7.0-nightly-373e473-20250804",
3
+ "version": "0.7.0-nightly-b7b8078-20250805",
4
4
  "description": "react-native-audio-api provides system for controlling audio in React Native environment compatible with Web Audio API specification",
5
5
  "bin": {
6
6
  "setup-rn-audio-api-web": "./scripts/setup-rn-audio-api-web.js"