반응형 React-Native 오류들3 Node server is running and available on the same network - run 'npm start' from react-native root 포트가 이미 사용중이라서 발생하는 에러이다. 사용중인 포트를 알아내서, 그 포트를 종료하면 해결된다. 현재 사용중인 전체 포트목록과 PID를 포함한 정보 확인하기 sudo lsof -PiTCP -sTCP:LISTEN 특정 8081 포트의 PID 확인하기 sudo lsof -i: 8081 사용중인 포트 종료하기 sudo kill -9 PID 2022. 2. 23. M1 맥북 : cocoapods 에러 (pod install이 안될 때) 에러가 2개 발생했다. 1. Could not find "Podfile.lock" at /경로/Podfile.lock. Did you run "pod install" in iOS directory? 2. Failed to build iOS project. We ran "xcodebuild" command but it exited with error code 65. To debug build logs further, consider Command line invocation: ... 실제 에러메시지 에러메시지를 텍스트로 복사 smilerush@SmileRushui-MacBookPro Example1ReactNative % npm run ios > example1reactnative@0.0.1 ios > r.. 2022. 2. 20. Execution failed for task ':app:processDebugMainManifest' 실제 에러메시지 위의 메세지를 텍스트로 복사 smilerush@SmileRushui-MacBookPro Example1ReactNative % npm run android > example1reactnative@0.0.1 android > react-native run-android info Running jetifier to migrate libraries to AndroidX. You can disable it using "--no-jetifier" flag. Jetifier found 863 file(s) to forward-jetify. Using 10 workers... info JS server already running. info Launching emulator... info Succes.. 2022. 2. 19. 이전 1 다음 반응형