我需要将RN项目移动到新文件夹,但是当我这样做时。使用react-native run-ios运行项目时出现此错误。从原始文件夹运行项目时,没有错误。
error Failed to build iOS project. We ran "xcodebuild" command but it exited with error code 65. To debug build logs further, consider building your app with Xcode.app, by opening TestProject.xcworkspace
The following commands produced analyzer issues:
Analyze /Users/home/Desktop/APLIKACE/TestProject/node_modules/react-native/ReactCommon/jsi/jsi.cpp normal x86_64
Analyze /Users/home/Desktop/APLIKACE/TestProject/node_modules/react-native/ReactCommon/yoga/yoga/Yoga.cpp normal x86_64
(2 commands with analyzer issues)
The following build commands failed:
CompileC /Users/home/Desktop/APLIKACE/TestProject/ios/build/TestProject/Build/Intermediates.noindex/React.build/Debug-iphonesimulator/React.build/Objects-normal/x86_64/RCTUIUtils.o /Users/home/Desktop/APLIKACE/TestProject/node_modules/react-native/React/UIUtils/RCTUIUtils.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
(1 failure)
答案 0 :(得分:0)
所以我想出了一个解决方案,该解决方案可以满足我的需要(将项目移到我初始化github repo的新空文件夹中)。 因此,似乎相对路径和名称存在一些问题。所以我要做的就是像这样重命名我的旧项目
... / ParentFolder / MyProject到... / ParentFolder / MyProject2
我在ParentFolder中创建了与原始文件夹完全相同的新文件夹,即... / ParentFolder / MyProject。现在这是一个空文件夹,我初始化为Git存储库。
然后我将MyProject2的内容复制到MyProject文件夹。现在一切正常。 希望能对以后的人有所帮助。