[RN] 트러블 슈팅 - npm 재설치 / 네이버 api 연동

김주형·2023년 12월 14일

뭘 이런걸 다 합니다

목록 보기
17/51

도움되었던 블로그


The error message you're seeing indicates that Xcode is unable to find a file named RCTThirdPartyFabricComponentsProvider 2.mm in the specified directory. This could be due to a few reasons:

The file doesn't exist: The file RCTThirdPartyFabricComponentsProvider 2.mm might not exist in the specified directory. You can verify this by navigating to the directory and checking if the file is there.

Incorrect file path: The file path might be incorrect. This could happen if the file was moved, renamed, or deleted.

Build configuration issue: The file might be incorrectly specified as an input or output in a build phase or custom build rule.

To resolve this issue, you can try the following steps:

Verify the file's existence: Navigate to the specified directory and check if the file RCTThirdPartyFabricComponentsProvider 2.mm exists. If it doesn't, you'll need to restore it or remove references to it from your project.

Check the file path: If the file does exist, make sure the file path in the error message matches the actual file path.

Inspect your build configuration: Look at the build phases and custom build rules in your Xcode project. If RCTThirdPartyFabricComponentsProvider 2.mm is specified as an input or output, make sure the file path is correct and the file exists at that path.

If none of these steps resolve the issue, it might be a problem with the react-native package. You could try deleting your node_modules directory and running npm install to reinstall your packages.


The terminal selection indicates that the build of your iOS application in Xcode has failed. The error occurred during the compilation of the AppDelegate.mm file.

The error message doesn't provide specific details about what caused the compilation to fail. However, the problem is likely to be in the AppDelegate.mm file, as this is where the compiler encountered the error.

You can try the following steps to debug this issue:

Open the AppDelegate.mm file in your code editor and check for any syntax errors or other issues that might cause the compilation to fail.
Try to clean the project (in Xcode, you can do this by selecting Product > Clean Build Folder) and then build the project again.
If the error persists, you can try to get more detailed error information by running the build command with the --verbose option.
If none of these steps resolve the issue, you might want to consider filing a bug report as suggested by the error message. Be sure to include the warning message and any other relevant information.


빌드 테스팅 오류 캐시 삭제로 해결

profile
우리스러움

0개의 댓글