We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
🪲 Description
I am trying to play ambient sounds, where they should be muted if the device is in silent mode.
🪲 What have you tried?
react-native-sounds config is set to below code
react-native-sounds
🪲 Please post your code:
import Sound from 'react-native-sound' const start_final = new Sound('start_final.mp3', Sound.MAIN_BUNDLE) Sound.setActive(true) Sound.setCategory('Ambient') Sound.setMode("Default") const playStart = () => { start_final.play() }
💡 Possible solution
Unknown
Is your issue with...
Are you using...
react-native run-android
Which versions are you using?
Does the problem occur on...
If your problem is happening on a device, which device?
The text was updated successfully, but these errors were encountered:
You can handle this by lowering volume :
start_final.setVolume(0)
like above statement rest thing u can handle by fetching details of device if its mute or not handle this accordingly....
Sorry, something went wrong.
I'm wondering if it is still possible to play sounds when you are on silent mode on iOS? Seems like some features have been deprecated? 🤔
The signature '(value: AVAudioSessionCategory): void' of 'MySound.setCategory' is deprecated.
This will help https://www.youtube.com/watch?v=vVI7ZAZq5e0
No branches or pull requests
🪲 Description
I am trying to play ambient sounds, where they should be muted if the device is in silent mode.
🪲 What have you tried?
react-native-sounds
config is set to below code🪲 Please post your code:
💡 Possible solution
Unknown
Is your issue with...
Are you using...
react-native run-android
)Which versions are you using?
Does the problem occur on...
If your problem is happening on a device, which device?
iPhone 12
The text was updated successfully, but these errors were encountered: