React Native:如何将文件添加到 "Xcode project root"?
React Native: how do I add a file to "Xcode project root"?
我正在关注 this guide 以将自定义推送通知声音添加到我的 React Native 项目中。它说要拿走我的 .wav
文件和 Add files to the Xcode project root. Make sure Add to targets is selected when adding files so that they are automatically add to the bundle resources
。谁能准确解释如何做到这一点?我是否将文件拖放到 XCode 中文件结构中的特定位置?
是的。如果您将 .wav
文件拖放到主项目文件夹(Info.plist
所在的位置)下,那么您将能够在 Javascript 中访问此文件,如下所示:
import RNFS from 'react-native-fs';
const fileName = `${RNFS.DocumentDirectoryPath}/yourFile.wav`
检查是否存在:
const exists = await RNFS.exists(fileName);
我正在关注 this guide 以将自定义推送通知声音添加到我的 React Native 项目中。它说要拿走我的 .wav
文件和 Add files to the Xcode project root. Make sure Add to targets is selected when adding files so that they are automatically add to the bundle resources
。谁能准确解释如何做到这一点?我是否将文件拖放到 XCode 中文件结构中的特定位置?
是的。如果您将 .wav
文件拖放到主项目文件夹(Info.plist
所在的位置)下,那么您将能够在 Javascript 中访问此文件,如下所示:
import RNFS from 'react-native-fs';
const fileName = `${RNFS.DocumentDirectoryPath}/yourFile.wav`
检查是否存在:
const exists = await RNFS.exists(fileName);