Óscar Adae Rodríguez
Óscar Adae Rodríguez
Hi guys, any advance with this issue? I have the same problem with react-native 0.73.6, on ios works great, but with Android, nothing happens Thanks!!
@mMarcos208 You need to add code to open file. E.g.: ``` RNFetchBlob .config({ ...defaultOptions, ...options }) .fetch('GET', url, { // Headers... }) .progress((received, total) => { Console.log('progress', received / total);...
Hi @LouisJS, is possible you forgot some parameter in the config? or do you forgot to ask for permissions? This is my config: ``` const options = Platform.select({ android: {...
Maybe your path is wrong? The path for iOS and Android is differente. Look at my config `const { dirs: { DownloadDir, DocumentDir } } = RNFetchBlob.fs;`
Only to discard mistakes. Could you see if you have the correct permissions selected into Settings > Apps > "Your app" > Permissions. Are you using the "Download Manager" ?
I see.... You are using Download Manager as well. Before I used Download Manager as you can see in my config and it works perfectly. In my opinion, there is...