react-native-audio-session icon indicating copy to clipboard operation
react-native-audio-session copied to clipboard

React Native module for handling the AVAudioSession instance on iOS.

Results 6 react-native-audio-session issues
Sort by recently updated
recently updated
newest added

I am getting this error for the line AudioSession.setActive(true), is there any additional setup I need to do besides importing AudioSession? I can't see why this would be causing an...

Hello. I'm doing an iOS VoIP app with push-to-talk functionality, and it works fine in foreground. But when it goes to background, I set audiosession category to Playback, from PlayAndRecord...

![Screenshot 2020-08-28 at 6 10 14 PM](https://user-images.githubusercontent.com/7235480/91561784-c7b35000-e959-11ea-8b72-97f8ec602d3d.png) Argument list too long: recursive header expansion failed at /Users/iPhone/../../../../node_modules/react-native-audio-session/ios/../../../ios/Pods/React/node_modules/acorn-jsx/node_modules/acorn/src/loose. Getting this error after linking. Please help me to fix this issue. "react-native-audio-session":...

AVAudioSession allows you to set multiple options at the same time. ``` [[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayAndRecord withOptions:AVAudioSessionCategoryOptionDefaultToSpeaker | AVAudioSessionCategoryOptionAllowBluetoothA2DP | AVAudioSessionCategoryOptionAllowBluetooth error:nil]; ``` Maybe I'm being thick, but I cannot figure...

Previously, these API functions only accepted one category option.