:beetle: Sound file not getting played when there is space in iOS application name.Got following error "The operation couldn鈥檛 be completed. (OSStatus error -10875.)"
This issue happening for only iOS.
React native ver : 0.61.4
same
https://github.com/zmxv/react-native-sound/issues/304#issuecomment-609375045
new Sound(
'fileName',
encodeURIComponent(Sound.MAIN_BUNDLE),
error => {}
)
This worked for me
Thank you @rezareact. your suggestion worked for me.
Most helpful comment
https://github.com/zmxv/react-native-sound/issues/304#issuecomment-609375045
new Sound(
'fileName',
encodeURIComponent(Sound.MAIN_BUNDLE),
error => {}
)
This worked for me