zmxv / react-native-sound

React Native module for playing sound clips

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Can't play from firebase url.

ArjunKarki opened this issue · comments

can't play url from firebase.
My link is https://storage.googleapis.com/chat_bucket_aso/2ihzd1mklbl8pwvhsw_3.36.mp3
My code
const audio = new Sound(
message.audio,
null,
error => {
setLoadingAudio(false);
if (error) {
console.log('failed to load the sound', error);
setError(true);
} },
);