216 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
0
answers
43
views
How do I send a local image file on React native Notifications IOS Attachments
I'm trying to schedule a local notification in my React Native app (using Notifee) that includes an image attachment. The image is selected and copied to a temporary path using react-native-fs, and ...
0
votes
0
answers
41
views
react-native-compressor - SSL handshake exception during request
When I try to run 'npx react-native run-android', it throws the error SSL handshake exception during request. Complete stacktrace is as follows:
FAILURE: Build failed with an exception.
* What went ...
0
votes
1
answer
117
views
Unable to copy or move file from databases folder with RNFS in react native
I have my database created at /data/data/<app_packagename>/databases/dbfile by react-native-sqlite-storage
i can see this file with Android Studio device explorer and the db works fine
i need ...
0
votes
0
answers
29
views
Convert local image to Base64 in react native But can't find image path
I want to convert local image to Base64 in react native But can't find image path. My image is stored in src/assets/images/myImage.png. What do i do to get the exact image path?
I have tried Image....
0
votes
2
answers
63
views
How to open video while downloading like TikTok and YouTube using React Native
Is there a way to open the video file while it is downloading and watch all that is downloaded, one megabyte or more, using React WinTap?
Is there a way to open the video file while it is downloading ...
0
votes
1
answer
55
views
ReactImageView: Image source "/storage/emulated/0/Download/UAC/forecasts/Salt_Lake/danger.png" doesn't exist. Even though I can verify it does exist
React Native Image
<Image source={{uri: imagePath}}/>
ReactImageView: Image source "/storage/emulated/0/Download/UAC/forecasts/Salt_Lake/danger.png" doesn't exist" even though it ...
1
vote
0
answers
167
views
Getting Memory Error When try to upload large file with react-native-fs in react native Expo
The primary reason was that I wanted to upload in chunks, so I read the file and divided it into chunks.
RNFS.readFile(fileUri, length, offset, 'base64');
similar to the method I described previously, ...
1
vote
1
answer
506
views
export data to excel in react native (on web)
i use react-native-fs & xlsx in my project.
when open app in web browser (chorom , microsoft Edge , ...) return Cannot read properties of undefined (reading 'RNFSFileTypeRegular') error.
thanks ...
1
vote
0
answers
52
views
Managing Media Files from API: Storing Locally in Device Storage with Token Retrieval
I am trying to store a file locally, but I don't have the media URL. I have an API that provides an authorization token. Then, I utilize the react-native-fs library in our React Native project. This ...
0
votes
1
answer
637
views
File move to IOS not working - React Native FS
I have implemented method to download images list as pdf to mobile storage, android works fine without any issues but ios not working. I give all the necessary permission for both OS, but iOS not ...
0
votes
1
answer
1k
views
Save files in android/media/com.package
I'm trying to download and save files in the file system like how WhatsApp does it.
WhatsApp stores files inside android/media/com.whatsapp/.
I was able to download and save the file inside /data/user/...
0
votes
1
answer
239
views
Download flie which is in applications'asset folder to device with react-native
I need to download sample file to my iOS/Android device which is placed in application's assets folder with react native.
I have implemented below code.
const assetPath = 'assets/icons/bootsplash.png';...
0
votes
1
answer
417
views
Unable to overwrite image in file path on android (React Native)
I am unable to overwrite files when storing them on android's external storage.
I have tried both react-native-fs and rn-fetch-blob but they both have the same result.
I've tried looking for more ...
0
votes
1
answer
2k
views
How to create a new folder using react-native -fs
How can I create a folder at the root of the internal storage in a React Native application, ensuring that the folder and its contents persist even if the app is uninstalled? I've explored the ...
2
votes
0
answers
303
views
react-native-fs is causing a TypeError
When I try and write to a file in react native using the react-native-fs work around (to replace fs), I run into an error. It says Cannot read property 'RNFSFileTypeRegular' of null.
The full error in ...