inflearn logo
강의

강의

N
챌린지

챌린지

멘토링

멘토링

N
클립

클립

로드맵

로드맵

지식공유

묻고 답해요

172만명의 커뮤니티!! 함께 토론해봐요.

API_URL 코딩부분이요

해결됨

배달앱 클론코딩 [with React Native]

2강에서 처음으로 POST통신하는 부분에서 아무리 똑같이 코딩해도 네트워크 에러 나서 3시간동안 이것저것 해보다가 방법을 찾았어요 ㅋㅋㅋㅋ 이부분인데 개발툴이 달라서 그런지 모르겠지만 저는 맥북 VS code로 따라하고 있는데 이렇게 하니까 해결됐어요. Config.API_URL이 문자열 변수라서 저기에 ${} 이걸로 감싸면 인식이 안 됐나봐요. 이렇게 삽질하다보면 제꺼가 되겠죠? ㅎㅎㅎ 혹시 저같은 분 계실까봐 글 남깁니당.

  • react-native
sugmug 댓글 1 좋아요 0 조회수 330

Flipper 좌측 Enabled/Disabled 창에 Layout 이 사라졌어요.

미해결

배달앱 클론코딩 [with React Native]

위 사진은 Layout 버튼을 누르는 강좌 화면 캡쳐 입니다. 아래 사진은 제 PC에 있는 Flipper 화면인데, 체크하려다가 Layout 에 - 휴지통 모양 눌렀더니 사라졌습니다. 어디 설정하는 메뉴나 위치가 있나 열심히 찾아봐도 안나오는데... 해당 메뉴 다시 나타나도록 키려면 어디 설정을 건드려야하나요...?

  • react-native
  • flipper
part-spt 댓글 1 좋아요 0 조회수 233

mac 환경에서 실습할 경우

해결됨

Airflow 마스터 클래스

안녕하세요 mac 환경에서 강의를 수강하려고 합니다. 이러한 경우 wsl 설치 없이 다음 강의로 넘어가면 될까요??

  • python
  • 데이터-엔지니어링
  • airflow
lucli 댓글 1 좋아요 0 조회수 533

theme 적용이 되지 않습니다.

해결됨

실전 프로젝트로 배우는 데이터 앱 만들기 with Python & Streamlit

theme 적용시, 강사님께서 말씀해주신 것처럼 작업 폴더에 .streamlit 폴더를 만들고, 그 안에 config.toml 파일을 만들어 테마 적용을 했지만, 아래의 문구가 발생하며, 태마가 적용이 되지 않습니다. The page that you have requested does not seem to exist. Running the app's main page. 어떤 이유 인지 알려주세요.

  • python
  • streamlit
동현고 댓글 1 좋아요 0 조회수 494

위젯 기능

미해결

배달앱 클론코딩 [with React Native]

안녕하세요, 잘 배우고 있습니다. 위젯기능이 좀 궁금한데요. 검색해보면 IOS/Android 의 각각 네이티브를 건드려서 만드는것 같던데 React Native단에서 두 시스템의 위젯을 공통으로 만들어주는 기능은 없나요? 제가 잘 못찾아서 그런건지 어렵네요. 감사합니다!

  • react-native
SHAWN NOH 댓글 1 좋아요 0 조회수 219

Flipper 실행 오류가 납니다

미해결

배달앱 클론코딩 [with React Native]

플리퍼를 공식 사이트에서 윈도우 버전으로 다운 받고 실행하는데 다음과 같은 에러가 뜹니다 이 에러를 해결하고자 터미널을 키고 배쉬와 파워쉘에서 sudo kill $(lsof -t -i :52342) 이 코드를 쳐봤는데 이런 식으로 나옵니다... 혹시나 해서 컴퓨터를 모두 종료하고 다시 시작해서 다른거 실행 안하고 플리퍼부터 실행했는데도 똑같은 문제가 발생하네요 이 문제에 대해 아이디어를 주실 수 있나요??? ㅠㅠㅠ

  • react-native
시라소니 댓글 2 좋아요 0 조회수 634

완전탐색 1090번 시간초과

미해결

2주만에 통과하는 알고리즘 코딩테스트 (2024년)

예제 문제는 잘 풀리는데 백준에 제출하니까 시간초과가 뜹니다 강의 자료랑 큰 차이는 없어 보이는데 어느 부분을 고쳐야 시간 안에 계산 가능할까요? #include <iostream> #include <cstdlib> using namespace std; int main(int argc, char **argv) { int n; int minX, minY, maxX, maxY; cin >> n; int arr[n][2]; for(int i=0; i<n; i++){ cin >> arr[i][0] >> arr[i][1]; } minX = arr[0][0]; maxX = arr[0][0]; minY = arr[0][1]; maxY = arr[0][1]; for(int i=1; i<n; i++){ if(arr[i][0]>maxX){ maxX = arr[i][0]; } else if(arr[i][0]<minX){ minX = arr[i][0]; } if(arr[i][1]>maxY){ maxY = arr[i][1]; } else if(arr[i][1]<minY){ minY = arr[i][1]; } } int arr_answer[n]; int arr_dis[n]; for(int i=minY; i<=maxY; i++){ for(int j=minX; j<= maxX; j++){ for(int l=0; l<n; l++){ int subY= 0, subX=0; subY = i-arr[l][1]; subX = j-arr[l][0]; arr_dis[l] = abs(subX) + abs(subY); } int sum = 0; for(int k=0; k<n; k++){ sum+=arr_dis[k]; if(i==minY && j ==minX){ arr_answer[k] =sum; } else if(sum < arr_answer[k]){ arr_answer[k] = sum; } } } } for(int i=0; i<n; i++){ cout << arr_answer[i] << " "; } return 0; }

  • python
  • 코딩-테스트
  • 알고리즘
yongyong213 댓글 2 좋아요 1 조회수 616

Creating a new application 에서 오류가 납니다.

미해결

배달앱 클론코딩 [with React Native]

$ npx react-native@latest init AwesomeProject 커맨드를 실행했을때, ✔ Downloading template ✔ Copying template ✔ Processing template ✖ Installing Ruby Gems error Fetching gem metadata from https://rubygems.org/........ Resolving dependencies... Fetching rexml 3.2.6 Installing rexml 3.2.6 Fetching CFPropertyList 3.0.6 Installing CFPropertyList 3.0.6 Fetching concurrent-ruby 1.2.2 Installing concurrent-ruby 1.2.2 Fetching i18n 1.14.1 Installing i18n 1.14.1 Fetching minitest 5.20.0 Installing minitest 5.20.0 Fetching tzinfo 2.0.6 Installing tzinfo 2.0.6 Fetching zeitwerk 2.6.12 Installing zeitwerk 2.6.12 Fetching activesupport 6.1.7.6 Installing activesupport 6.1.7.6 Fetching public_suffix 4.0.7 Installing public_suffix 4.0.7 Fetching addressable 2.8.5 Installing addressable 2.8.5 Fetching httpclient 2.8.3 Installing httpclient 2.8.3 Fetching json 2.6.3 Installing json 2.6.3 with native extensions Gem::Ext::BuildError: ERROR: Failed to build gem native extension. current directory: /Users/jt/study/react-native/FirstProject3/vendor/bundle/ruby/2.6.0/gems/json-2.6.3/ext/json/ext/generator /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/bin/ruby -I /System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/lib/ruby/2.6.0 -r ./siteconf20230930-36317-qqfojl.rb extconf.rb creating Makefile current directory: /Users/jt/study/react-native/FirstProject3/vendor/bundle/ruby/2.6.0/gems/json-2.6.3/ext/json/ext/generator make "DESTDIR=" clean current directory: /Users/jt/study/react-native/FirstProject3/vendor/bundle/ruby/2.6.0/gems/json-2.6.3/ext/json/ext/generator make "DESTDIR=" compiling generator.c In file included from generator.c:1: In file included from ./../fbuffer/fbuffer.h:5: In file included from /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.0.sdk/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/include/ruby-2.6.0/ruby.h:33: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.0.sdk/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/include/ruby-2.6.0/ruby/ruby.h:24:10: fatal error: 'ruby/config.h' file not found #include "ruby/config.h" ^~~~~~~~~~~~~~~ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.0.sdk/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/include/ruby-2.6.0/ruby/ruby.h:24:10: note: did not find header 'config.h' in framework 'ruby' (loaded from '/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks') 1 error generated. make: *** [generator.o] Error 1 make failed, exit code 2 Gem files will remain installed in /Users/jt/study/react-native/FirstProject3/vendor/bundle/ruby/2.6.0/gems/json-2.6.3 for inspection. Results logged to /Users/jt/study/react-native/FirstProject3/vendor/bundle/ruby/2.6.0/extensions/universal-darwin-22/2.6.0/json-2.6.3/gem_make.out An error occurred while installing json (2.6.3), and Bundler cannot continue. Make sure that `gem install json -v '2.6.3' --source 'https://rubygems.org/'` succeeds before bundling. In Gemfile: cocoapods was resolved to 1.13.0, which depends on cocoapods-core was resolved to 1.13.0, which depends on algoliasearch was resolved to 1.27.5, which depends on json ✖ Installing Ruby Gems error Looks like your iOS environment is not properly set. Please go to https://reactnative.dev/docs/environment-setup?os=macos&platform=android and follow the React Native CLI QuickStart guide for macOS and iOS. info Run CLI with --verbose flag for more details. MacOS-Android 공식문서( https://reactnative.dev/docs/environment-setup?os=macos&platform=android) 차례대로 실행햇구요. java version "11.0.16" 2022-07-19 LTS 으로 설치되어 있구요. Cocoapods랑 ruby랑 설치해보면서 이것저것 해보려했는데 잘안되네요.

  • react-native
임정택 댓글 2 좋아요 0 조회수 583

저도 가로 배치가 잘되다가 세로 배치가 되어 질문드립니다.

미해결

비전공자를 위한 진짜 입문 올인원 개발 부트캠프

저도 강의 따라가다가 세로로 갑자기 변환되어서 답변 내용대로 해봤지만 고쳐지지를 않아서 질의 드립니다 아래 코드는 html코드입니다 <html> <head> <title>그랩마켓</title> <link href="index.css" type="text/css" rel="stylesheet" /> <body> <div id="header"> <div id="header-area"> <img src="images/images/icons/logo.png"/> </div> </div> <div id="body"> <div id="banner"> <img src="images/images/banners/banner1.png"/> </div> <h1>판매되는 상품들</h1> <div id="product-list"> <div class="product-card"> <img class="product-img" src="images/images/products/basketball1.jpeg"/> <div class="product-contents"> <span class="product-name">농구공 1호</span> <span class="product-price">50000원</span> <div class="product-seller"> <img class="product-avatar" src="images/images/icons/avatar.png"/> <span>그랩</span> </div> </div> </div> </div> <div class="product-card"> <img class="product-img" src="images/images/products/keyboard1.jpg"/> <div class="product-contents"> <span class="product-name">키보드 1호</span> <span class="product-price">30000원</span> <div class="product-seller"> <img class="product-avatar" src="images/images/icons/avatar.png"/> <span>그랩</span> </div> </div> </div> <div class="product-card"></div> <div class="product-card"></div> </div> <div id="footer"></div> </body> </head> </html> 아래는 css코드입니다 * { margin: 0; padding: 0; } #header{ height: 64px; display: flex; justify-content: center; border-bottom: 1px solid gray; } #body{ min-height: 100%; width: 1024px; margin: 0 auto; padding-bottom: 24px; } #footer{ height: 200px; background-color: red; } #banner{ height: 300px; background-color: yellow; } #header-area{ width: 1024px; height: 100%; display: flex; align-items: center; } #header-area > img{ width: 128px; height: 36px; } #body > h1{ margin-top: 16px; } #banner > img{ width: 100%; height: 300px; } #product-list{ display: flex; flex-wrap: wrap; margin-top: 12px; flex-direction: row; } .product-card{ width: 180px; height: 300px; margin-right: 12px; margin-bottom:12px; border: 1px solid rgb(230, 230, 230); border-radius: 12px; } .product-img{ width: 100%; height: 210px; } .product-contents{ display: flex; flex-direction: column; padding: 8px; } .product-name{ font-size: 14px; } .product-price{ font-size: 16px; font-weight: 200px; margin-top: 4px; } .product-seller{ display: flex; align-items: center; margin-top: 12px; } .product-avatar{ width: 24px; } 바쁘시겠지만 답변 해주시면 감사하겠습니다! +해당 코드 진행 후 개발자 도구 이용해서 보면 flex에 의해 정해지지않은 보라색 칸이 있는데 해당 칸 처리가 힘들어 추가 질문 올립니다!

  • HTML/CSS
  • javascript
  • react
  • node.js
  • react-native
  • 머신러닝
  • express
  • tensorflow
ㅈㅎ 댓글 1 좋아요 0 조회수 532

1명은 맥, 1명은 윈도우로 협업하는 것이 가능한가요?

해결됨

배달앱 클론코딩 [with React Native]

현재까지 배운 내용(섹션 0- 리액트 네비게이션까지 수강 ) 으로는 환경 설정 부분의 차이 때문에 github를 이용한 협업을 할 경우(프로젝트 폴더를 pull받을 때 특히), 상당히 충돌할 것으로 예상되는데 해결할 방법이 있을까요? 학습을 모두 마치고 여쭤보려고도 했지만, 처음부터 협업이 어려울 수도 있다는 생각이 들어서 다 듣기 전에 여쭈어 보는 점은 죄송합니다.

  • react-native
corrosion521 댓글 1 좋아요 0 조회수 1249

안드로이드 에뮬레이터 에러...

미해결

iOS/Android 앱 개발을 위한 실전 React Native - Basic

react-native run-android info Running jetifier to migrate libraries to AndroidX. You can disable it using "--no-jetifier" flag. (node:18259) Warning: Accessing non-existent property 'padLevels' of module exports inside circular dependency (Use node --trace-warnings ... to show where the warning was created) Jetifier found 866 file(s) to forward-jetify. Using 12 workers... info Starting JS server... info Launching emulator... info Successfully launched emulator. info Installing the app... FAILURE: Build failed with an exception. * What went wrong: Could not initialize class org.codehaus.groovy.runtime.InvokerHelper > Exception java.lang.NoClassDefFoundError: Could not initialize class org.codehaus.groovy.reflection.ReflectionCache [in thread "Daemon worker"] * Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights. * Get more help at https://help.gradle.org BUILD FAILED in 255ms error Failed to install the app. Make sure you have the Android development environment set up: https://facebook.github.io/react-native/docs/getting-started.html#android-development-environment. Run CLI with --verbose flag for more details. Error: Command failed: ./gradlew app:installDebug -PreactNativeDevServerPort=8081 FAILURE: Build failed with an exception. * What went wrong: Could not initialize class org.codehaus.groovy.runtime.InvokerHelper > Exception java.lang.NoClassDefFoundError: Could not initialize class org.codehaus.groovy.reflection.ReflectionCache [in thread "Daemon worker"] * Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights. * Get more help at https://help.gradle.org BUILD FAILED in 255ms at checkExecSyncError (node:child_process:885:11) at execFileSync (node:child_process:921:15) at runOnAllDevices (/Users/heejinroh/Desktop/희진/react-native/my_first_app/node_modules/@react-native-community/cli-platform-android/build/commands/runAndroid/runOnAllDevices.js:94:39) at process.processTicksAndRejections (node:internal/process/task_queues:95:5) at async Command.handleAction (/Users/heejinroh/Desktop/희진/react-native/my_first_app/node_modules/@react-native-community/cli/build/index.js:182:9)

  • react
  • react-native
  • es6
희진 댓글 1 좋아요 0 조회수 991

동시성 부분 추가 공부하면서 헷갈리는 부분 질문 드립니다.

해결됨

넓고 얕게 외워서 컴공 전공자 되기

안녕하세요 선생님! 동시성과 병렬성 관련해 기초가 약해 해당 강의를 들으면서 OS 부족한 부분을 많이 알게되어 도움이 많이되고 있습니다. 다름이 아니라 해당 강좌 범위는 벗어나지만.. 구글링해도 명확하게 해결되지 않아 질문 드립니다. 동시성을 구현하는 방법으로 멀티쓰레드 나 코루틴 방법으로 구현을 할 수있고 멀티쓰레드 방법에서 쓰레드 전환 간 context switch가 많기 때문에 오버헤드도 많아 Coroutine 방법을 많이 쓰고 또한 유저가 이벤트루프(스케쥴링)을 app에서 관리한다는 측면에서 디버그가 유용하다 정도로 이해하고 있습니다. 많은 블로그에서 멀티쓰레드보다 코루틴을 소개하면서 동시성 구현시 코루틴을 더 상위(혹은 좋은) 방법으로 서술이 많이 되어 있더라구요. I/O작업이 빈번할 경우 코루틴이 더 유리하다는 이해가 됩니다. 싱글스레드 + async 싱글스레드 멀티스레드 + async 멀티스레드 2개의 구현방법이 레이어가 다르다(thread와 task)보니 4가지 경우의 수를 적용할 수 있는데 실제 동시성을 적용해야되는 상황이면 어떻게 판단하고 최적의 구현방법(4가지 중 선택)을 적용할 수 있을까요? (파이썬 스택을 쓰고 있으며 GIL도 이해하고 있는 상태입니다.) 다시한번 해당 강의와 조금 벗어난 질문드려 죄송합니다. ( _ _ )

  • python
  • 동시성
  • 병렬성
권설민 댓글 1 좋아요 0 조회수 431

ios env 관련하여 문의드립니다.

미해결

배달앱 클론코딩 [with React Native]

안녕하세요. 현재 mac m1 pro 환경에서 개발을 진행하고 있는 수강생입니다. .env 파일 설정과 관련하여 이해되지 않는 오류가 발생하고 있어 질문드립니다. 문제사항은 아래와 같습니다. .env 파일에 있던 몇 가지 변수를 변경한 뒤, ios / android metro 서버를 통해 시뮬레이터를 재시작했습니다. 그러나 Config의 내용을 console.log로 찍어보았을 때, ios 시뮬레이터에서 발생하는 로그에는 초기에 설정했던 .env의 내용이 그대로 찍혀 나오고 있습니다. Android Studio에서 BuildConfig.java 파일에는 변경한 이후의 내용이 정상적으로 나오는데, IOS에서만 이런 상황이 발생하는 게 의아합니다. 1. IOS에서 다른 기기로 시뮬레이터를 돌려보고, 2. 기기 전체를 재부팅해도 같은 현상이 반복되는데 혹시 IOS에서만 발생하는 .env 관련해서 주의할 사항이 추가로 있을지 궁금합니다!

  • react-native
이찬하 댓글 2 좋아요 0 조회수 252

debugger 관련 오류 문의드립니다

미해결

배달앱 클론코딩 [with React Native]

안녕하세요 강의를 따라 진행하던 중 질문이 있어 문의드립니다. 현재 웹소켓 관련한 로그를 찍어보기 위해 localhost:8081 주소로 접속해보면 Another debugger is already connected 위 메시지가 발생해 메트로 서버 로그를 확인해보니 아래와 같은 에러가 발생하고 있습니다. Error: Unable to resolve module ./debugger-ui/debuggerWorker.aca173c4 from /Users/chanha/Desktop/pandpie/FoodDeliveryApp/.: None of these files exist: * debugger-ui/debuggerWorker.aca173c4(.native|.native.js|.js|.native.jsx|.jsx|.native.json|.json|.native.ts|.ts|.native.tsx|.tsx) * debugger-ui/debuggerWorker.aca173c4/index(.native|.native.js|.js|.native.jsx|.jsx|.native.json|.json|.native.ts|.ts|.native.tsx|.tsx) at ModuleResolver.resolveDependency (/Users/chanha/Desktop/pandpie/FoodDeliveryApp/node_modules/metro/src/node-haste/DependencyGraph/ModuleResolution.js:114:15) at DependencyGraph.resolveDependency (/Users/chanha/Desktop/pandpie/FoodDeliveryApp/node_modules/metro/src/node-haste/DependencyGraph.js:277:43) at /Users/chanha/Desktop/pandpie/FoodDeliveryApp/node_modules/metro/src/lib/transformHelpers.js:169:21 at Server._resolveRelativePath (/Users/chanha/Desktop/pandpie/FoodDeliveryApp/node_modules/metro/src/Server.js:1045:12) at process.processTicksAndRejections (node:internal/process/task_queues:95:5) at async Server._explodedSourceMapForBundleOptions (/Users/chanha/Desktop/pandpie/FoodDeliveryApp/node_modules/metro/src/Server.js:993:35) at async Promise.all (index 1) at async Server._symbolicate (/Users/chanha/Desktop/pandpie/FoodDeliveryApp/node_modules/metro/src/Server.js:945:26) at async Server._processRequest (/Users/chanha/Desktop/pandpie/FoodDeliveryApp/node_modules/metro/src/Server.js:418:7) 이를 위해 제가 진행해본 사항은 아래와 같습니다. 1. https://velog.io/@dody_/Another-debugger-is-already-connected 위 글을 참조해 react-native 프로젝트를 재시작 해보았습니다. 2. npm install --save @react-native-community/cli-debugger-ui 명령어로 debugger-ui 패키지를 재설치해보았습니다. node_modules/ 패키지를 지우고 다시 npm i를 통해 전체 패키지를 재설치해보았습니다. 메시지를 읽어보면 모듈 자체의 설치 이슈일 것으로 예상되는데 혹시 제가 놓친 부분이 있을까요?? 제 개발환경은 m1 pro 를 사용하고 있습니다.

  • react-native
이찬하 댓글 1 좋아요 0 조회수 306

크롤링 기사 기간 설정

해결됨

[신규 개정판] 이것이 진짜 크롤링이다 - 실전편 (인공지능 수익화)

안녕하세요 뉴스크롤링에서 크롤링 하고자 하는 뉴스의 기간을 정해주려면 response = requests.get(" https://search.naver.com/search.naver?where=news&sm=tab_jum&query=검색어 ") 위 코드의 " " 안에 뉴스기간을 옵션으로 설정하여 검색한 페이지의 URL을 긁어서 넣어주면 되는걸지요? 감사합니다.

  • python
  • 웹-크롤링
cherrykim90 댓글 2 좋아요 0 조회수 1204

npm run ios 시 에러 발생

미해결

배달앱 클론코딩 [with React Native]

깃헙에 올려져있는 setting 프로젝트를 클론받고 npm i && npx pod-install 까지 완료한 후 npm run ios 를 하면 아래와 같은 에러가 뜹니다. 안드로이드로 실행했을 경우 정상적으로 작동합니다. rary/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Products/Debug-iphonesimulator/ReactCommon -fmodule-map-file\=/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public/React/React-Core.modulemap -fmodule-map-file\=/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public/yoga/Yoga.modulemap -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -include /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Target\ Support\ Files/ReactCommon/ReactCommon-prefix.pch -MMD -MT dependencies -MF /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactCommon.build/Objects-normal/x86_64/TurboModuleUtils.d --serialize-diagnostics /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactCommon.build/Objects-normal/x86_64/TurboModuleUtils.dia -c /Users/jeongjaehong/FoodDeliveryApp/node_modules/react-native/ReactCommon/react/nativemodule/core/ReactCommon/TurboModuleUtils.cpp -o /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactCommon.build/Objects-normal/x86_64/TurboModuleUtils.o -index-unit-output-path / Pods.build/Debug-iphonesimulator/ReactCommon.build/Objects-normal/x86_64/TurboModuleUtils.o SwiftDriver YogaKit normal x86_64 com.apple.xcode.tools.swift.compiler (in target 'YogaKit' from project 'Pods') cd /Users/jeongjaehong/FoodDeliveryApp/ios/Pods builtin-SwiftDriver -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name YogaKit -Onone -enforce-exclusivity\=checked @/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/Objects-normal/x86_64/YogaKit.SwiftFileList -DDEBUG -D COCOAPODS -Xcc -fmodule-map-file\=/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public/yoga/Yoga.modulemap -import-underlying-module -Xcc -fmodule-map-file\=/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public/YogaKit/YogaKit.modulemap -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator17.0.sdk -target x86_64-apple-ios11.0-simulator -enable-bare-slash-regex -g -module-cache-path /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Index.noindex/DataStore -swift-version 4 -I /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Products/Debug-iphonesimulator/YogaKit -F /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Products/Debug-iphonesimulator/YogaKit -parse-as-library -c -j8 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphonesimulator17.0-21A325-9f995cea1212cde75317d7d3cd2045e2.sdkstatcache -output-file-map /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/Objects-normal/x86_64/YogaKit-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/Objects-normal/x86_64/YogaKit.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/Objects-normal/x86_64/YogaKit_const_extract_protocols.json -Xcc -iquote -Xcc /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/YogaKit-generated-files.hmap -Xcc -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/YogaKit-own-target-headers.hmap -Xcc -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/YogaKit-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/YogaKit-project-headers.hmap -Xcc -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Products/Debug-iphonesimulator/YogaKit/include -Xcc -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Private -Xcc -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Private/YogaKit -Xcc -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public -Xcc -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public/Yoga -Xcc -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/DerivedSources-normal/x86_64 -Xcc -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/DerivedSources/x86_64 -Xcc -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/DerivedSources -Xcc -DPOD_CONFIGURATION_DEBUG\=1 -Xcc -DDEBUG\=1 -Xcc -DCOCOAPODS\=1 -emit-objc-header -emit-objc-header-path /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/Objects-normal/x86_64/YogaKit-Swift.h -working-directory /Users/jeongjaehong/FoodDeliveryApp/ios/Pods -experimental-emit-module-separately -disable-cmo CompileC /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/Objects-normal/x86_64/YogaKit-dummy.o /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Target\ Support\ Files/YogaKit/YogaKit-dummy.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'YogaKit' from project 'Pods') cd /Users/jeongjaehong/FoodDeliveryApp/ios/Pods /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -ivfsstatcache /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphonesimulator17.0-21A325-9f995cea1212cde75317d7d3cd2045e2.sdkstatcache -target x86_64-apple-ios11.0-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -std\=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path\=/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror\=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror\=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-implicit-fallthrough -DPOD_CONFIGURATION_DEBUG\=1 -DDEBUG\=1 -DCOCOAPODS\=1 -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator17.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -fobjc-abi-version\=2 -fobjc-legacy-dispatch -index-store-path /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Index.noindex/DataStore -iquote /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/YogaKit-generated-files.hmap -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/YogaKit-own-target-headers.hmap -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/YogaKit-all-non-framework-target-headers.hmap -ivfsoverlay /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/all-product-headers.yaml -iquote /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/YogaKit-project-headers.hmap -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Products/Debug-iphonesimulator/YogaKit/include -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Private -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Private/YogaKit -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public/Yoga -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/DerivedSources-normal/x86_64 -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/DerivedSources/x86_64 -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/DerivedSources -F/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Products/Debug-iphonesimulator/YogaKit -fmodule-map-file\=/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public/yoga/Yoga.modulemap -include /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Target\ Support\ Files/YogaKit/YogaKit-prefix.pch -MMD -MT dependencies -MF /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/Objects-normal/x86_64/YogaKit-dummy.d --serialize-diagnostics /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/Objects-normal/x86_64/YogaKit-dummy.dia -c /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Target\ Support\ Files/YogaKit/YogaKit-dummy.m -o /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/Objects-normal/x86_64/YogaKit-dummy.o -index-unit-output-path /Pods.build/Debug-iphonesimulator/YogaKit.build/Objects-normal/x86_64/YogaKit-dummy.o CompileC /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/Objects-normal/x86_64/YGLayout.o /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/YogaKit/YogaKit/Source/YGLayout.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'YogaKit' from project 'Pods') cd /Users/jeongjaehong/FoodDeliveryApp/ios/Pods /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -ivfsstatcache /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphonesimulator17.0-21A325-9f995cea1212cde75317d7d3cd2045e2.sdkstatcache -target x86_64-apple-ios11.0-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -std\=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path\=/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror\=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror\=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-implicit-fallthrough -DPOD_CONFIGURATION_DEBUG\=1 -DDEBUG\=1 -DCOCOAPODS\=1 -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator17.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -fobjc-abi-version\=2 -fobjc-legacy-dispatch -index-store-path /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Index.noindex/DataStore -iquote /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/YogaKit-generated-files.hmap -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/YogaKit-own-target-headers.hmap -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/YogaKit-all-non-framework-target-headers.hmap -ivfsoverlay /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/all-product-headers.yaml -iquote /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/YogaKit-project-headers.hmap -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Products/Debug-iphonesimulator/YogaKit/include -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Private -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Private/YogaKit -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public/Yoga -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/DerivedSources-normal/x86_64 -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/DerivedSources/x86_64 -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/DerivedSources -F/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Products/Debug-iphonesimulator/YogaKit -fmodule-map-file\=/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public/yoga/Yoga.modulemap -include /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Target\ Support\ Files/YogaKit/YogaKit-prefix.pch -MMD -MT dependencies -MF /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/Objects-normal/x86_64/YGLayout.d --serialize-diagnostics /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/Objects-normal/x86_64/YGLayout.dia -c /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/YogaKit/YogaKit/Source/YGLayout.m -o /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/Objects-normal/x86_64/YGLayout.o -index-unit-output-path /Pods.build/Debug-iphonesimulator/YogaKit.build/Objects-normal/x86_64/YGLayout.o CompileC /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/Objects-normal/x86_64/UIView+Yoga.o /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/YogaKit/YogaKit/Source/UIView+Yoga.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'YogaKit' from project 'Pods') cd /Users/jeongjaehong/FoodDeliveryApp/ios/Pods /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -ivfsstatcache /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphonesimulator17.0-21A325-9f995cea1212cde75317d7d3cd2045e2.sdkstatcache -target x86_64-apple-ios11.0-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -std\=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path\=/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Wno-implicit-atomic-properties -Werror\=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror\=objc-root-class -Wno-arc-repeated-use-of-weak -Wimplicit-retain-self -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wdeprecated-implementations -Wno-implicit-fallthrough -DPOD_CONFIGURATION_DEBUG\=1 -DDEBUG\=1 -DCOCOAPODS\=1 -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator17.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -fobjc-abi-version\=2 -fobjc-legacy-dispatch -index-store-path /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Index.noindex/DataStore -iquote /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/YogaKit-generated-files.hmap -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/YogaKit-own-target-headers.hmap -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/YogaKit-all-non-framework-target-headers.hmap -ivfsoverlay /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/all-product-headers.yaml -iquote /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/YogaKit-project-headers.hmap -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Products/Debug-iphonesimulator/YogaKit/include -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Private -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Private/YogaKit -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public/Yoga -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/DerivedSources-normal/x86_64 -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/DerivedSources/x86_64 -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/DerivedSources -F/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Products/Debug-iphonesimulator/YogaKit -fmodule-map-file\=/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public/yoga/Yoga.modulemap -include /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Target\ Support\ Files/YogaKit/YogaKit-prefix.pch -MMD -MT dependencies -MF /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/Objects-normal/x86_64/UIView+Yoga.d --serialize-diagnostics /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/Objects-normal/x86_64/UIView+Yoga.dia -c /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/YogaKit/YogaKit/Source/UIView+Yoga.m -o /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/Objects-normal/x86_64/UIView+Yoga.o -index-unit-output-path /Pods.build/Debug-iphonesimulator/YogaKit.build/Objects-normal/x86_64/UIView+Yoga.o SwiftEmitModule normal x86_64 Emitting\ module\ for\ YogaKit (in target 'YogaKit' from project 'Pods') cd /Users/jeongjaehong/FoodDeliveryApp/ios/Pods builtin-swiftTaskExecution -- /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/YogaKit/YogaKit/Source/YGLayoutExtensions.swift -target x86_64-apple-ios11.0-simulator -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator17.0.sdk -I /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Products/Debug-iphonesimulator/YogaKit -F /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Products/Debug-iphonesimulator/YogaKit -no-color-diagnostics -enable-testing -g -import-underlying-module -module-cache-path /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 4 -enforce-exclusivity\=checked -Onone -D DEBUG -D COCOAPODS -serialize-debugging-options -const-gather-protocols-file /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/Objects-normal/x86_64/YogaKit_const_extract_protocols.json -enable-bare-slash-regex -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/jeongjaehong/FoodDeliveryApp/ios/Pods -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -fmodule-map-file\=/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public/yoga/Yoga.modulemap -Xcc -fmodule-map-file\=/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public/YogaKit/YogaKit.modulemap -Xcc -ivfsstatcache -Xcc /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphonesimulator17.0-21A325-9f995cea1212cde75317d7d3cd2045e2.sdkstatcache -Xcc -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/YogaKit-generated-files.hmap -Xcc -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/YogaKit-own-target-headers.hmap -Xcc -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/YogaKit-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/YogaKit-project-headers.hmap -Xcc -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Products/Debug-iphonesimulator/YogaKit/include -Xcc -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Private -Xcc -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Private/YogaKit -Xcc -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public -Xcc -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public/Yoga -Xcc -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/DerivedSources-normal/x86_64 -Xcc -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/DerivedSources/x86_64 -Xcc -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/DerivedSources -Xcc -DPOD_CONFIGURATION_DEBUG\=1 -Xcc -DDEBUG\=1 -Xcc -DCOCOAPODS\=1 -module-name YogaKit -disable-clang-spi -target-sdk-version 17.0 -target-sdk-name iphonesimulator17.0 -external-plugin-path /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator17.0.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator17.0.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator17.0.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator17.0.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/Objects-normal/x86_64/YogaKit.swiftdoc -emit-module-source-info-path /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/Objects-normal/x86_64/YogaKit.swiftsourceinfo -emit-objc-header-path /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/Objects-normal/x86_64/YogaKit-Swift.h -serialize-diagnostics-path /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/Objects-normal/x86_64/YogaKit-master-emit-module.dia -emit-dependencies-path /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/Objects-normal/x86_64/YogaKit-master-emit-module.d -parse-as-library -o /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/Objects-normal/x86_64/YogaKit.swiftmodule -emit-abi-descriptor-path /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/Objects-normal/x86_64/YogaKit.abi.json CompileC /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactCommon.build/Objects-normal/x86_64/TurboModulePerfLogger.o /Users/jeongjaehong/FoodDeliveryApp/node_modules/react-native/ReactCommon/react/nativemodule/core/ReactCommon/TurboModulePerfLogger.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'ReactCommon' from project 'Pods') cd /Users/jeongjaehong/FoodDeliveryApp/ios/Pods /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -ivfsstatcache /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphonesimulator17.0-21A325-9f995cea1212cde75317d7d3cd2045e2.sdkstatcache -target x86_64-apple-ios11.0-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -std\=c++14 -stdlib\=libc++ -fmodules -fmodules-cache-path\=/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror\=return-type -Wdocumentation -Wunreachable-code -Werror\=deprecated-objc-isa-usage -Werror\=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wno-newline-eof -Wno-c++11-extensions -Wno-implicit-fallthrough -DPOD_CONFIGURATION_DEBUG\=1 -DDEBUG\=1 -DCOCOAPODS\=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator17.0.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -Wunguarded-availability -index-store-path /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Index.noindex/DataStore -iquote /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactCommon.build/ReactCommon-generated-files.hmap -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactCommon.build/ReactCommon-own-target-headers.hmap -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactCommon.build/ReactCommon-all-non-framework-target-headers.hmap -ivfsoverlay /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactCommon.build/all-product-headers.yaml -iquote /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactCommon.build/ReactCommon-project-headers.hmap -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Products/Debug-iphonesimulator/ReactCommon/include -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Private -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Private/ReactCommon -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public/DoubleConversion -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public/RCT-Folly -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public/React-Core -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public/React-callinvoker -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public/React-cxxreact -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public/React-jsi -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public/React-jsiexecutor -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public/React-jsinspector -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public/React-logger -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public/React-perflogger -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public/React-runtimeexecutor -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public/ReactCommon -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public/Yoga -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public/fmt -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public/glog -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/boost -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/RCT-Folly -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/DoubleConversion -I/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Private/React-Core -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactCommon.build/DerivedSources-normal/x86_64 -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactCommon.build/DerivedSources/x86_64 -I/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactCommon.build/DerivedSources -F/Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Products/Debug-iphonesimulator/ReactCommon -fmodule-map-file\=/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public/React/React-Core.modulemap -fmodule-map-file\=/Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Headers/Public/yoga/Yoga.modulemap -DFOLLY_NO_CONFIG -DFOLLY_MOBILE\=1 -DFOLLY_USE_LIBCPP\=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation -include /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Target\ Support\ Files/ReactCommon/ReactCommon-prefix.pch -MMD -MT dependencies -MF /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactCommon.build/Objects-normal/x86_64/TurboModulePerfLogger.d --serialize-diagnostics /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactCommon.build/Objects-normal/x86_64/TurboModulePerfLogger.dia -c /Users/jeongjaehong/FoodDeliveryApp/node_modules/react-native/ReactCommon/react/nativemodule/core/ReactCommon/TurboModulePerfLogger.cpp -o /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactCommon.build/Objects-normal/x86_64/TurboModulePerfLogger.o -index-unit-output-path /Pods.build/Debug-iphonesimulator/ReactCommon.build/Objects-normal/x86_64/TurboModulePerfLogger.o /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'Flipper-Boost-iOSX' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'DoubleConversion' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'React-Core-AccessibilityResources' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'CocoaAsyncSocket' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'React-RCTNetwork' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'React' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'Flipper-PeerTalk' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'React-RCTSettings' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'React-RCTVibration' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'React-cxxreact' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'libevent' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'boost' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'glog' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'React-logger' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'Flipper-DoubleConversion' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'Pods-FoodDeliveryApp' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'React-CoreModules' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'FBLazyVector' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'React-RCTActionSheet' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'React-RCTAnimation' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'React-callinvoker' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'FlipperKit' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'FBReactNativeSpec' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'React-jsiexecutor' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'Flipper-Fmt' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'React-RCTBlob' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'Flipper-Glog' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'React-jsi' from project 'Pods') warning: Run script build phase 'Bundle React Native code and images' will be run during every build because it does not specify any outputs. To address this warning, either add output dependencies to the script phase, or configure it to run in every build by unchecking "Based on dependency analysis" in the script phase. (in target 'FoodDeliveryApp' from project 'FoodDeliveryApp') warning: Run script build phase 'Start Packager' will be run during every build because it does not specify any outputs. To address this warning, either add output dependencies to the script phase, or configure it to run in every build by unchecking "Based on dependency analysis" in the script phase. (in target 'FoodDeliveryApp' from project 'FoodDeliveryApp') /Users/jeongjaehong/FoodDeliveryApp/ios/FoodDeliveryApp.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'FoodDeliveryApp' from project 'FoodDeliveryApp') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'React-Core' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'OpenSSL-Universal' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'React-RCTText' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'RCTTypeSafety' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'React-RCTLinking' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'Flipper' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'Flipper-RSocket' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'RNScreens' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'react-native-safe-area-context' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'React-runtimeexecutor' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'React-perflogger' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'RCT-Folly' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'React-RCTImage' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'RCTRequired' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'Flipper-Folly' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'React-jsinspector' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'Yoga' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'ReactCommon' from project 'Pods') /Users/jeongjaehong/FoodDeliveryApp/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 11.0, but the range of supported deployment target versions is 12.0 to 17.0.99. (in target 'YogaKit' from project 'Pods') 2023-09-20 17:22:11.115 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.116 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.116 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.116 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.116 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.116 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.116 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.116 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.116 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.116 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.116 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.116 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.116 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.117 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.117 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.119 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.119 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.120 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.120 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.120 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.120 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.121 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.121 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.121 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.121 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.121 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.122 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.122 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.122 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.122 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.122 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.122 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.234 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.235 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.235 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.235 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.235 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.235 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.237 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.237 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.237 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.237 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.237 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.238 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.241 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.242 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.242 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.242 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.243 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.243 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.243 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.244 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.244 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.244 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.244 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.244 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.244 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.245 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.245 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.245 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.245 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.245 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.245 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. 2023-09-20 17:22:11.246 xcodebuild[2182:284808] [MT] DVTAssertions: Warning in /System/Volumes/Data/SWE/Apps/DT/BuildRoots/BuildRoot11/ActiveBuildRoot/Library/Caches/com.apple.xbs/Sources/IDEFrameworks/IDEFrameworks-22267/IDEFoundation/Provisioning/Capabilities Infrastructure/IDECapabilityQuerySelection.swift:103 Details: createItemModels creation requirements should not create capability item model for a capability item model that already exists. Function: createItemModels(for:itemModelSource:) Thread: <_NSMainThread: 0x7ff46f204330>{number = 1, name = main} Please file a bug at https://feedbackassistant.apple.com with this warning message and any useful information you can provide. BUILD FAILED The following build commands failed: CompileC /Users/jeongjaehong/Library/Developer/Xcode/DerivedData/FoodDeliveryApp-ahummdrmcnhpmgfrskocyodxiinu/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Yoga.build/Objects-normal/x86_64/Yoga.o /Users/jeongjaehong/FoodDeliveryApp/node_modules/react-native/ReactCommon/yoga/yoga/Yoga.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'Yoga' from project 'Pods') (1 failure)

  • react-native
jaehong2782 댓글 3 좋아요 0 조회수 3055

Fly.io 에 그랩마켓 서버 배포하기 수업 중 오류 발생

해결됨

비전공자를 위한 진짜 입문 올인원 개발 부트캠프

docker 관련 에러인것 같습니다. docker 관련 파트 언제 했는지 찾을 수가 없어서 수업 다시 들어 보면서 해결하지도 못하네요 어떻게 손대야 할 지 모르겠습니다.

  • HTML/CSS
  • javascript
  • react
  • node.js
  • react-native
  • 머신러닝
  • express
  • tensorflow
Wakgood 댓글 2 좋아요 0 조회수 466

x Installing Ruby Gems

미해결

배달앱 클론코딩 [with React Native]

mac에서 안드로이드 쪽 설치하는 부분은 잘 완료하여 simulator가 잘 작동하는 것도 확인하였습니다. xcode, cocoapods 설치 후 프로젝트 생성도중 에러가 발생하였습니다. 버전은 1.12.1 입니다. 버전 관련하여 에러인 것 같은데 해결이 잘 안됩니다.

  • react-native
댓글 3 좋아요 0 조회수 633

구글 플레이 내부 테스트에서 네이버맵이 가끔 팅기는 현상

미해결

배달앱 클론코딩 [with React Native]

안녕하세요! 개발할 때는 네이버맵이 잘 동작하는데, 내부 테스트를 위해 aab를 추출하고 올렸는데 다운받은 어플에서는 네이버맵이 가끔 팅깁니다.! 현재 저는 rn72버전을 사용중이고 저번에 강사님이 rn72 폴더 쪽 올리실 때 커밋 히스토리들 중에서 네이버 맵 쪽 관련 코드도 조금 수정하셨던 걸로 보였었는데 현재는 스쿼시머지가 된것인지 히스토리 파악이 어렵습니다 ㅜ ㅜ 혹시 rn72버전에서 네이버맵쪽 관련 수정해주어야 할 부분이 따로 존재할까요 ? 아니면 혹시 릴리즈모드에 progaurd rule을 적용시키는 부분때문에 일어날수도 있을까요 ?

  • react-native
이효범 댓글 1 좋아요 0 조회수 293

인기 태그

인프런 TOP Writers

주간 인기글