我是React Native的新手,我想将android
和ios
文件夹移动到我创建的名为platforms
的文件夹中。我已经移动了文件夹并运行:
react-native run-ios --project-path ./platforms/ios
在将文件夹移动到一个目录时,收到有关../node_modules/react-native/scripts/react-native-xcode.sh
脚本的错误,将其更改为../../node_modules/react-native/scripts/react-native-xcode.sh
。
它开始构建(找到xcodeproj
)并失败:
/Users/Can/Documents/Programming/React Native/MyApp/platforms/ios/MyApp/AppDelegate.h:8:9: fatal error: 'React/RCTBridgeDelegate.h' file not found
info #import <React/RCTBridgeDelegate.h>
(因为我的重点是iOS,所以我没有检查Android)
如何正确地将ios
和android
文件夹移动到我的自定义文件夹并正确构建React Native应用程序?