我目前正在使用 React Native 的 Expo 库将录音写入 iOS 文件系统。我FileSystem.documentDirectory
按照expo docs使用,但是在使用 iOS11 Files 应用程序时无法访问此文件。Expo是否有可能在允许这样做的地方写,或者在iCloud上写失败?似乎这FileSystem.documentDirectory
是文件系统中的沙盒区域。
问问题
1299 次
1 回答
3
实际上它看起来确实有效,但您必须构建实际的 iOS 应用程序 .ipa 文件。它不能通过模拟器从 expo 工作,但是一旦我通过 TestFlight 进行测试,文件确实出现在 Files 应用程序中。
ios
Expo的钥匙是这样app.json
的。我还没有测试是否需要所有这些键:
"ios": {
"infoPlist": {
"UISupportsDocumentBrowser": true,
"UIFileSharingEnabled": true,
"LSSupportsOpeningDocumentsInPlace": true
}
}
于 2018-07-17T13:52:43.823 回答