Murilo Bastos

Results 7 comments of Murilo Bastos

Dude, I love you! I was trying to fix my build for hours only to find out that 11.1.1 has been released and it's broken. Fixing it to 11.1.0 solved...

Ok, just got why I am getting this error. I need an RPC server to connect but the question now is: Can I use a public RPC like "https://api.myetherapi.com/eth" or...

@paulinon it started happening after the latest iOS update. It's simple, if I build with Firebase 10.3.0, for example, `FirebaseUser.UserId` is `X`. Then if I install Firebase 11.4.0, with the...

I had the same issue, I'm using a recursive function to deal with looped playback. ex: ```js const onSuccess = audio => success => { console.log('audio finished playing', success) if...

Have you tried to play the sound only in the callback instead of calling `windSound.play()` right after instantiating? ex: ``` javascript const windSound = new Sound(require('../../assets/sounds/wind.mp3'), err => { if...

> I found workaround for android. > I'm putting file into `android/app/src/main/res/raw/wind.mp3` > > and call it like: > > ``` > const windSound = new Sound('wind.mp3'); > windSound.play(); >...

Now the sound stops playing after a while =/ Ex code: ```javascript import { useState, useEffect } from 'react' import { AppState } from 'react-native' import Sound from 'react-native-sound' //...