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
Download method exposed from this library is not downloading files from remote URL's. is it expected or there is a bug arround it.
It has to download remote files.
0.76.5
1.18
const downloadVideo = async () => { const { status } = await ImagePicker.requestMediaLibraryPermissionsAsync(); if (status === 'granted') { const file = CONFIG.FILES_URL + 'videos/' + video.uuid + '.mp4'; console.log("Downloading video...", file); await download(video, (progress) => { console.log('downloadProgress: ', progress); }); } else { NToast.error('You need to give storage permission to download file.'); } };
From above code it never reaches downloadProgress, also not getting any error.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Current behavior
Download method exposed from this library is not downloading files from remote URL's. is it expected or there is a bug arround it.
Expected behavior
It has to download remote files.
Platform
React Native Version
0.76.5
React Native Compressor Version
1.18
Reproducible Steps And Demo
From above code it never reaches downloadProgress, also not getting any error.
The text was updated successfully, but these errors were encountered: