daino_saur
article thumbnail
[ERROR] BUILD FAILED ** Xcode's output: ↳ Writing result bundle at path:
프로그래밍/Error 2024. 3. 20. 01:09

테스트 앱 배포를 위해 배포를 한 후 갑자기 vs코드에서 빌드를 시작하니 발생하기 시작한 오류. 이것 때문에 1시간 넘게 헤맨 것 같다. 답은 바로 빌드시 발생했던 몇 가지 오류를 수정하다가 xcode에 Runner - Info에서, Debug, Release, Profile 설정을 만져줬는데, 이게 오류가 생기는 거였다. Pods-Runner.debug, Pods-Runner.release로 되어있던 것을 Debug와 Release로 변경해 주면 해결된다. Could not build the application for the simulator. Error launching application on iPhone 11 Pro Max My problem is I cannot start debugging ..

article thumbnail
[ERROR] [!] No `Podfile' found in the project directory. & [!] Invalid `Podfile` file: [!] Specifying multiple `post_install` hooks is unsupported..
프로그래밍/Error 2024. 2. 16. 17:51

발단 포폴정리를 위해 이전에 만들었던 코드를 오랜만에 실행시켰는데, 이런 오류가 생긴다. [!] No `Podfile' found in the project directory. 전개 확인해 보니 ios 파일의 Pods 폴더가 비활성화돼서 생기는 문제인 것 같다. cocoapod을 다시 설치해야해서 ios파일로 가 pod install을 실행했다. 위기 역시 한번에 해결될 일이 없다. 또 오류가 발생한다. [!] Invalid `Podfile` file: [!] Specifying multiple `post_install` hooks is unsupported.. # from /Users/jungdain/Documents/GitHub/Nomadmap_v2/ios/Podfile:46 # -----------..