Skip to content Skip to sidebar Skip to footer

Is It Possible To Write A File To The Ios Filesystem With Expo So That It Is Accessible Via The Ios 11 Files App

I'm currently writing an audio recording to the iOS filesystem using the Expo library for React Native. I'm using the FileSystem.documentDirectory as per the expo docs, however thi

Solution 1:

Actually it appears that it does work, but you have to build the actual iOS app .ipa file. It wasn't working from expo via simulator, but once I was testing via TestFlight the files did appear in the Files app.

The ios key of Expo's app.json looks like this. I haven't tested whether all of these keys are required:

"ios":{"infoPlist":{"UISupportsDocumentBrowser":true,"UIFileSharingEnabled":true,"LSSupportsOpeningDocumentsInPlace":true}}

Post a Comment for "Is It Possible To Write A File To The Ios Filesystem With Expo So That It Is Accessible Via The Ios 11 Files App"