AndroidError: Activity class {...} does not exist.com.android.builder.testing.api.DeviceException: com.android.ddmlib.InstallException: INSTALL_FAILED_INSUFFICIENT_STORAGEcom.android.ddmlib.InstallException: INSTALL_FAILED_INVALID_APK: Scanning Failed.:코드중복 에러Execution failed for task ':app:mergeDexRelease'.Task :app:transformClassesAndResourcesWithProguardForRelease FAILEDR8 관련 빌드에러모듈 버전 불일치 문제검토 - 안정성 (화웨이 장비 문제)버전 중복 문제Android - react-native run-android 실패INSTALL_FAILED_UPDATE_INCOMPATIBLEJava heap spaceIOSm1에서 simulator로 실행이 안될 때ios pod install 문제 발생IPHONE_SIMULATOR_TARGETiOS 빌드는 성공했는데, 네트워크 연결이 안되는 오류run-ios가 갑자기 실행 안되는 경우[Firebase/Crashlytics][I-CLS000000] Failed to download settings.Entitlements file was modified during the build, which is not supported.Invalid Bundle. Ipad Multitasking support requires these orientations: ....No account with App Store Connect access have been found for the team "".
App Store Connect access is required for App Store Connect distribution.Undefined symbol: _swift_FORCE_LOAD$_swiftWebKitnode_modules/react-native/scripts/find-node.sh 주석 처리하면 해결되는 케이스공통개행문자 관련 이슈 ( CLRF - \r\n ↔ LF - \n )
Android
Error: Activity class {...} does not exist.
해결 방법
- 참고 링크 : https://stackoverflow.com/questions/20915266/error-type-3-error-activity-class-does-not-exist
앱 지웠다가 다시 설치
$ adb devices # List of devices attached # R3CM80P32CD device # emulator-5554 authorizing ------------------------------------ # 방법1. (쉘에 붙어서 하기) $ adb -s [디바이스이름] shell # adb -s R3CM80P32CD shell $ pm uninstall [앱패키지명] # pm uninstall com.mobile_90 ------------------------------------ # 방법2. (쉘 안붙고 한번에 하기) $ adb -s [디바이스이름] uninstall [앱패키지명] # adb -s R3CM80P32CD uninstall com.algocareapp.debug
com.android.builder.testing.api.DeviceException: com.android.ddmlib.InstallException: INSTALL_FAILED_INSUFFICIENT_STORAGE
원인 / 해결방법
com.android.ddmlib.InstallException: INSTALL_FAILED_INVALID_APK: Scanning Failed.:
해결방법
에러 1.
xecution failed for task ':app:mergeDexDebug'. > A failure occurred while executing com.android.build.gradle.internal.tasks.Workers$ActionFacade > java.nio.file.NoSuchFileException: C:\Users\David\Desktop\Code\smartInsole\smartInsole_frontend_fin-master\android\app\build\intermediates\external_file_lib_dex_archives\debug\out
에러남/android 내에 .gradle 폴더를 삭제 한 후 다시 실행하면 해결 ( 비추천.. !! )
코드중복 에러
react-native-masked-view랑 react-native-community/masked-view 이런 게 둘 다 있을 시 발생
npm remove @react-native-community/masked-view 이런식으로 하나 지우고 하면 됨.

Execution failed for task ':app:mergeDexRelease'.
간혹가다 Debug에서는 안나오는데, Release 빌드 시에 에러가 뜨는 경우가 있다.
먼저 proguard를 활성화시켜보면 안뜨는 경우도 있는데, proguard를 안쓸 이유가 없으므로 먼저 켜보고 그래도 뜬다면 multidex를 활성화시키면 된다.
Task :app:transformClassesAndResourcesWithProguardForRelease FAILED
R8 관련 빌드에러
android.enableR8 = false로 해결
[프로젝트경로]/android/gradle.properties
해결방안
//아래 설정 추가하면 해결됨. android.enableR8 = false
에러 문구
> Task :app:transformClassesAndResourcesWithR8ForRelease FAILED FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':app:transformClassesAndResourcesWithR8ForRelease'. > GC overhead limit exceeded * 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 Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0. Use '--warning-mode all' to show the individual deprecation warnings. See https://docs.gradle.org/6.2/userguide/command_line_interface.html#sec:command_line_warnings BUILD FAILED in 2m 4s 367 actionable tasks: 334 executed, 33 up-to-date Expiring Daemon because JVM heap space is exhausted
모듈 버전 불일치 문제
모듈 최신화로 해결
검토 - 안정성 (화웨이 장비 문제)
increase minimum SDK version to 22
버전 중복 문제
안드로이드 앱 - 버전 중복 문제
파일 경로 :프로젝트경로/android/app/build.gradle
이미 동일한
versionCode
로 스토어에 올렸을 경우, 수정하여 새로운 버전 빌드 시 build.gradle
에도 버전 업데이트 해야한다.versionCode
: Google Play Console 내 업로드 시 구분 코드값. (중복 불가)- 스토어에 해당 버전으로 올린 적이 있다면 수정해야함.
versionName
: 사용자에게 노출되는 앱 버전이다. (Google Play Store 노출) (중복 가능)

Android - react-native run-android 실패
Could not initialize class org.codehaus.groovy.runtime.InvokerHelper
- https://services.gradle.org/distributions/ - gradle 배포 버전
haneojin@hanui-MacBookAir mobile % npx react-native run-android --deviceId=emulator-5554 info Running jetifier to migrate libraries to AndroidX. You can disable it using "--no-jetifier" flag. Jetifier found 1268 file(s) to forward-jetify. Using 8 workers... info JS server already running. info Building the app... FAILURE: Build failed with an exception. * What went wrong: Could not initialize class org.codehaus.groovy.runtime.InvokerHelper * 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 1s error Failed to build the app. Run CLI with --verbose flag for more details. Error: Command failed: ./gradlew build -x lint at makeError (/Users/haneojin/Desktop/90fac/mobile/node_modules/execa/index.js:174:9) npm ERR! code 1 npm ERR! path /Users/haneojin/Desktop/90fac/mobile npm ERR! command failed npm ERR! command sh -c react-native run-android --deviceId=emulator-5554 npm ERR! A complete log of this run can be found in: npm ERR! /Users/haneojin/.npm/_logs/2021-02-23T16_50_09_706Z-debug.log
빌드 잘 되던 것도 갑자기 위의 에러를 띄우며 안드로이드로 실행 되지 않음.
npx 명령어로 실행하는 것은 항상 최신 버전을 통해 빌드를 진행하는데, 기존 프로젝트의 gradle 버전과 호환이 안맞아서 그런듯.
android/app/gradle/wrapper/gradle-wrapper.properties
distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-all.zip <- 이 부분을 수정해서 gradle 버전업 시키면 해결됨. zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists
INSTALL_FAILED_UPDATE_INCOMPATIBLE
INSTALL_FAILED_UPDATE_INCOMPATIBLE
> Task :app:installDebug FAILED Deprecated Gradle features were used in this build, making it incompatible with Gradle 7.0. Use '--warning-mode all' to show the individual deprecation warnings. See https://docs.gradle.org/6.2/userguide/command_line_interface.html#sec:command_line_warnings 374 actionable tasks: 117 executed, 257 up-to-date Unable to install /Users/night-ohl/Desktop/90fac/mobile/90mobile/android/app/build/outputs/apk/debug/app-debug.apk com.android.ddmlib.InstallException: INSTALL_FAILED_UPDATE_INCOMPATIBLE: Package com.mobile_90 signatures do not match previously installed version; ignoring! at com.android.ddmlib.Device.installRemotePackage(Device.java:1133) at com.android.ddmlib.Device.installPackage(Device.java:963) at com.android.ddmlib.Device.installPackage(Device.java:939) at com.android.ddmlib.Device.installPackage(Device.java:928) at com.android.builder.testing.ConnectedDevice.installPackage(ConnectedDevice.java:126) .... FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':app:installDebug'. > com.android.builder.testing.api.DeviceException: com.android.ddmlib.InstallException: INSTALL_FAILED_UPDATE_INCOMPATIBLE: Package com.mobile_90 signatures do not match previously installed version; ignoring! * 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 26s
해결방안
그냥 삭제 후 재설치하면 됨
$ adb uninstall "your.app.bundle"
Java heap space
에러 내용
* What went wrong: Execution failed for task ':app:packageDebug'. > A failure occurred while executing com.android.build.gradle.internal.tasks.Workers$ActionFacade > Java heap space
해결
android/app/src/main/AndroidManifest.xml
<application ... android:largeHeap="true" ..... />
IOS
m1에서 simulator로 실행이 안될 때
arm64 추가하고 해보자
xcworkspace
파일 열고Pods
에Excluded Architectures
에arm64
를 추가하고 다시 해보자.
.png?table=block&id=e332e2d0-c103-4358-94a4-fbe18c7e419a&cache=v2)
ios pod install 문제 발생
모듈 버전, repo 버전 안맞음
오류 내용
$ npx pod-install npx: 1개의 패키지를 1.131초만에 설치했습니다. Scanning for pods... 1.10.0 > pod install Using firebase.json from '/Users/night-ohl/Desktop/90fac/mobile/dev/firebase.json' Adding a custom script phase for Pod RNFBApp: [RNFB] Core Configuration Adding a custom script phase for Pod RNFBCrashlytics: [RNFB] Crashlytics Configuration Auto-linking React Native modules for target `mobile_90`: BVLinearGradient, RNCAsyncStorage, RNCCheckbox, RNCMaskedView, RNCPushNotificationIOS, RNDeviceInfo, RNFBApp, RNFBCrashlytics, RNFBIid, RNFBMessaging, RNGestureHandler, RNReanimated, RNScreens, RNVectorIcons, react-native-cookies, react-native-safe-area-context, and react-native-webview Analyzing dependencies Fetching podspec for `DoubleConversion` from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec` Fetching podspec for `Folly` from `../node_modules/react-native/third-party-podspecs/Folly.podspec` Fetching podspec for `glog` from `../node_modules/react-native/third-party-podspecs/glog.podspec` [!] CocoaPods could not find compatible versions for pod "Firebase/Messaging": In snapshot (Podfile.lock): Firebase/Messaging (= 7.3.0, ~> 7.3.0) In Podfile: RNFBMessaging (from `../node_modules/@react-native-firebase/messaging`) was resolved to 10.5.1, which depends on Firebase/Messaging (~> 7.4.0) You have either: * out-of-date source repos which you can update with `pod repo update` or with `pod install --repo-update`. * changed the constraints of dependency `Firebase/Messaging` inside your development pod `RNFBMessaging`. You should run `pod update Firebase/Messaging` to apply changes you've made. Aborting run An unexpected error was encountered. Please report it as a bug: CocoaPodsError: The command `pod install` failed └─ Cause: Error: pod exited with non-zero code: 1 at CocoaPodsPackageManager._installAsync (/Users/night-ohl/.npm/_npx/77084/lib/node_modules/pod-install/build/index.js:2:85286) at processTicksAndRejections (internal/process/task_queues.js:93:5) at async CocoaPodsPackageManager.installAsync (/Users/night-ohl/.npm/_npx/77084/lib/node_modules/pod-install/build/index.js:2:84649) at async runAsync (/Users/night-ohl/.npm/_npx/77084/lib/node_modules/pod-install/build/index.js:2:109680) at async /Users/night-ohl/.npm/_npx/77084/lib/node_modules/pod-install/build/index.js:2:109766 { code: 'COMMAND_FAILED', cause: Error: pod exited with non-zero code: 1 at ChildProcess.h (/Users/night-ohl/.npm/_npx/77084/lib/node_modules/pod-install/build/index.js:2:1073) at Object.onceWrapper (events.js:422:26) at ChildProcess.emit (events.js:315:20) at maybeClose (internal/child_process.js:1048:16) at Process.ChildProcess._handle.onexit (internal/child_process.js:288:5) ... at Object.spawnAsync [as default] (/Users/night-ohl/.npm/_npx/77084/lib/node_modules/pod-install/build/index.js:2:558) at CocoaPodsPackageManager._runAsync (/Users/night-ohl/.npm/_npx/77084/lib/node_modules/pod-install/build/index.js:2:86068) at CocoaPodsPackageManager._installAsync (/Users/night-ohl/.npm/_npx/77084/lib/node_modules/pod-install/build/index.js:2:84933) at CocoaPodsPackageManager.installAsync (/Users/night-ohl/.npm/_npx/77084/lib/node_modules/pod-install/build/index.js:2:84660) at runAsync (/Users/night-ohl/.npm/_npx/77084/lib/node_modules/pod-install/build/index.js:2:109688) at processTicksAndRejections (internal/process/task_queues.js:93:5) at async /Users/night-ohl/.npm/_npx/77084/lib/node_modules/pod-install/build/index.js:2:109766 { pid: 77095, output: [ '', '' ], stdout: '', stderr: '', status: 1, signal: null }, isPackageManagerError: true }
해결 방법
- repo 최신화
$ cd ios/ $ pod install --repo-update night-ohl@MacBook-Pro[:~/Desktop/90fac/mobile/dev/ios$ pod install --repo-update Using firebase.json from '/Users/night-ohl/Desktop/90fac/mobile/dev/firebase.json' Adding a custom script phase for Pod RNFBApp: [RNFB] Core Configuration Adding a custom script phase for Pod RNFBCrashlytics: [RNFB] Crashlytics Configuration Auto-linking React Native modules for target `mobile_90`: BVLinearGradient, RNCAsyncStorage, RNCCheckbox, RNCMaskedView, RNCPushNotificationIOS, RNDeviceInfo, RNFBApp, RNFBCrashlytics, RNFBIid, RNFBMessaging, RNGestureHandler, RNReanimated, RNScreens, RNVectorIcons, react-native-cookies, react-native-safe-area-context, and react-native-webview Updating local specs repositories CocoaPods 1.10.1 is available. To update use: `sudo gem install cocoapods` For more information, see https://blog.cocoapods.org and the CHANGELOG for this version at https://github.com/CocoaPods/CocoaPods/releases/tag/1.10.1 Analyzing dependencies Fetching podspec for `DoubleConversion` from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec` Fetching podspec for `Folly` from `../node_modules/react-native/third-party-podspecs/Folly.podspec` Fetching podspec for `glog` from `../node_modules/react-native/third-party-podspecs/glog.podspec` [!] CocoaPods could not find compatible versions for pod "Firebase/Messaging": In snapshot (Podfile.lock): Firebase/Messaging (= 7.3.0, ~> 7.3.0) In Podfile: RNFBMessaging (from `../node_modules/@react-native-firebase/messaging`) was resolved to 10.5.1, which depends on Firebase/Messaging (~> 7.4.0) You have either: * changed the constraints of dependency `Firebase/Messaging` inside your development pod `RNFBMessaging`. You should run `pod update Firebase/Messaging` to apply changes you've made.
2. repo 최신화 과정에서 나온 에러를 참고하고 특정 모듈만 업데이트
- 위의 예시에 의하면
pod update Firebase/Messaging
을 별도로 실행하라고 하니 해주면 됨.
$ pod update Firebase/Messaging night-ohl@MacBook-Pro[:~/Desktop/90fac/mobile/dev/ios$ pod update Firebase/Messaging Using firebase.json from '/Users/night-ohl/Desktop/90fac/mobile/dev/firebase.json' Adding a custom script phase for Pod RNFBApp: [RNFB] Core Configuration Adding a custom script phase for Pod RNFBCrashlytics: [RNFB] Crashlytics Configuration Auto-linking React Native modules for target `mobile_90`: BVLinearGradient, RNCAsyncStorage, RNCCheckbox, RNCMaskedView, RNCPushNotificationIOS, RNDeviceInfo, RNFBApp, RNFBCrashlytics, RNFBIid, RNFBMessaging, RNGestureHandler, RNReanimated, RNScreens, RNVectorIcons, react-native-cookies, react-native-safe-area-context, and react-native-webview Updating local specs repositories CocoaPods 1.10.1 is available. To update use: `sudo gem install cocoapods` For more information, see https://blog.cocoapods.org and the CHANGELOG for this version at https://github.com/CocoaPods/CocoaPods/releases/tag/1.10.1 Analyzing dependencies Fetching podspec for `DoubleConversion` from `../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec` Fetching podspec for `Folly` from `../node_modules/react-native/third-party-podspecs/Folly.podspec` Fetching podspec for `glog` from `../node_modules/react-native/third-party-podspecs/glog.podspec` Downloading dependencies Installing BVLinearGradient (2.5.6) Installing CocoaAsyncSocket (7.6.4) Installing CocoaLibEvent (1.0.0) Installing DoubleConversion (1.1.6) Installing FBLazyVector (0.63.4) Installing FBReactNativeSpec (0.63.4) Installing Firebase (7.4.0) Installing FirebaseCore (7.4.0) Installing FirebaseCoreDiagnostics (7.6.0) Installing FirebaseCrashlytics (7.4.0) Installing FirebaseInstallations (7.6.0) Installing FirebaseInstanceID (7.6.0) Installing FirebaseMessaging (7.4.0) Installing Flipper (0.54.0) Installing Flipper-DoubleConversion (1.1.7) Installing Flipper-Folly (2.3.0) Installing Flipper-Glog (0.3.6) Installing Flipper-PeerTalk (0.0.4) Installing Flipper-RSocket (1.1.0) Installing FlipperKit (0.54.0) Installing Folly (2020.01.13.00) Installing GoogleDataTransport (8.2.0) Installing GoogleUtilities (7.2.2) Installing OpenSSL-Universal (1.0.2.20) Installing PromisesObjC (1.2.12) Installing RCTRequired (0.63.4) Installing RCTTypeSafety (0.63.4) Installing RNCAsyncStorage (1.12.1) Installing RNCCheckbox (0.5.7) Installing RNCMaskedView (0.1.10) Installing RNCPushNotificationIOS (1.8.0) Installing RNDeviceInfo (8.0.1) Installing RNFBApp (10.5.0) Installing RNFBCrashlytics (10.5.1) Installing RNFBIid (10.5.1) Installing RNFBMessaging (10.5.1) Installing RNGestureHandler (1.9.0) Installing RNReanimated (1.13.2) Installing RNScreens (2.16.1) Installing RNVectorIcons (8.0.0) Installing React (0.63.4) Installing React-Core (0.63.4) Installing React-CoreModules (0.63.4) Installing React-RCTActionSheet (0.63.4) Installing React-RCTAnimation (0.63.4) Installing React-RCTBlob (0.63.4) Installing React-RCTImage (0.63.4) Installing React-RCTLinking (0.63.4) Installing React-RCTNetwork (0.63.4) Installing React-RCTSettings (0.63.4) Installing React-RCTText (0.63.4) Installing React-RCTVibration (0.63.4) Installing React-callinvoker (0.63.4) Installing React-cxxreact (0.63.4) Installing React-jsi (0.63.4) Installing React-jsiexecutor (0.63.4) Installing React-jsinspector (0.63.4) Installing ReactCommon (0.63.4) Installing Yoga (1.14.0) Installing YogaKit (1.18.1) Installing boost-for-react-native (1.63.0) Installing glog (0.3.5) Installing nanopb (2.30907.0) Installing react-native-cookies (5.0.1) Installing react-native-safe-area-context (3.1.9) Installing react-native-webview (11.2.0) Generating Pods project Integrating client project Pod installation complete! There are 64 dependencies from the Podfile and 66 total pods installed.
IPHONE_SIMULATOR_TARGET
IPHONE_SIMULATOR_TARGET 값 변경 필요

iOS 빌드는 성공했는데, 네트워크 연결이 안되는 오류
- 시뮬레이터에서는 잘 동작하는데 ⇒ 앱을 릴리즈 빌드를 했더니 네트워크 커넥션이 전부 연결이 안됨.
connection refused
- HTTPS가 아닌 HTTP 연결을 하는 경우라면
Info.plist
에Arbitrary Load
도 허용했는지 확인.
- 허용 주소를 화이트리스트로 관리하고 있는지 확인하고, 화이트리스트 기반이라면 허용주소 추가.
# 화이트리스트에 아래 주소들 추가 app-measurement.com firebaselogging.googleapis.com reports.crashlytics.com settings.crashlytics.com e.crashlytics.com
2021-02-23 19:33:50.534915+0900 mobile_90[605:348478] Task <77F99128-7218-4A2D-A2BF-02DE1EC2A9FC>.<1> finished with error [-1001] Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo={NSUnderlyingError=0x28329b780 {Error Domain=kCFErrorDomainCFNetwork Code=-1001 "(null)" UserInfo={_kCFStreamErrorCodeKey=-2102, _kCFStreamErrorDomainKey=4}}, NSErrorFailingURLStringKey=https://firebaseinstallations.googleapis.com/v1/projects/mobile-10982/installations/, NSErrorFailingURLKey=https://firebaseinstallations.googleapis.com/v1/projects/mobile-10982/installations/, _kCFStreamErrorDomainKey=4, _kCFStreamErrorCodeKey=-2102, NSLocalizedDescription=The request timed out.} 2021-02-23 19:33:50.535297+0900 mobile_90[605:348479] Task <EB2D6522-DF36-46DF-A0CE-6B3C307C404E>.<1> finished with error [-1001] Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo={NSErrorFailingURLStringKey=https://device-provisioning.googleapis.com/checkin, NSErrorFailingURLKey=https://device-provisioning.2021-02-23 19:33:50.536386+0900 mobile_90[605:348271] Task <4C2BDA57-5E61-4ABD-9F35-AB7A6BF53E91>.<1> finished with error [-1001] Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo={NSUnderlyingError=0x283299d10 {Error Domain=kCFErrorDomainCFNetwork Code=-1001 "(null)" UserInfo={_kCFStreamErrorCodeKey=-2102, _kCFStreamErrorDomainKey=4}}, NSErrorFailingURLStringKey=https://firebaselogging-pa.googleapis.com/v1/firelog/legacy/batchlog, NSErrorFailingURLKey=https://firebaselogging-pa.googleapis.com/v1/firelog/legacy/batchlog, _kCFStreamErrorDomainKey=4, _kCFStreamErrorCodeKey=-2102, NSLocalizedDescription=The request timed out.} googleapis.com/checkin, _kCFStreamErrorDomainKey=4, _kCFStreamErrorCodeKey=-2103, NSLocalizedDescription=The request timed out.} 2021-02-23 19:33:50.539649+0900 mobile_90[605:348478] 7.6.0 - [Firebase/InstanceID][I-IID003009] Failed to fetch default token Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo={NSErrorFailingURLStringKey=https://device-provisioning.googleapis.com/checkin, NSErrorFailingURLKey=https://device-provisioning.googleapis.com/checkin, _kCFStreamErrorDomainKey=4, _kCFStreamErrorCodeKey=-2103, NSLocalizedDescription=The request timed out.} 2021-02-23 19:33:50.540110+0900 mobile_90[605:348227] Task <77F99128-7218-4A2D-A2BF-02DE1EC2A9FC>.<1> HTTP load failed, 0/0 bytes (error code: -999 [1:89]) 2021-02-23 19:33:50.543344+0900 mobile_90[605:348227] Connection 1: unable to determine interface type without an established connection 2021-02-23 19:33:50.543446+0900 mobile_90[605:348227] Connection 1: unable to determine fallback status without a connection 2021-02-23 19:33:50.543806+0900 mobile_90[605:348227] Task <EB2D6522-DF36-46DF-A0CE-6B3C307C404E>.<1> HTTP load failed, 0/0 bytes (error code: -999 [1:89]) 2021-02-23 19:33:50.548946+0900 mobile_90[605:348227] Task <4C2BDA57-5E61-4ABD-9F35-AB7A6BF53E91>.<1> HTTP load failed, 0/0 bytes (error code: -999 [1:89]) 2021-02-23 19:34:05.284034+0900 mobile_90[605:347945] Task <2239B6E5-647F-4AFE-B1BC-D3628E3DB386>.<1> finished with error [-1001] Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo={_kCFStreamErrorCodeKey=-2103, _NSURLErrorFailingURLSessionTaskErrorKey=LocalDownloadTask <2239B6E5-647F-4AFE-B1BC-D3628E3DB386>.<1>, _NSURLErrorRelatedURLSessionTaskErrorKey=( "LocalDownloadTask <2239B6E5-647F-4AFE-B1BC-D3628E3DB386>.<1>" ), NSLocalizedDescription=The request timed out., NSErrorFailingURLStringKey=https://app-measurement.com/config/app/1:342785214615:ios:550de7cac04dfddfb681d2?platform=ios&app_instance_id=558605A3DAD0472FA22C32790F9A1BA8&gmp_version=70500, NSErrorFailingURLKey=https://app-measurement.com/config/app/1:342785214615:ios:550de7cac04dfddfb681d2?platform=ios&app_instance_id=558605A3DAD0472FA22C32790F9A1BA8&gmp_version=70500, _kCFStreamErrorDomainKey=4} 2021-02-23 19:34:05.288275+0900 mobile_90[605:348568] 7.6.0 - [Firebase/Analytics][I-ACS901017] Encounter network error. Code, error: -1001, Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo={_kCFStreamErrorCodeKey=-2103, _NSURLErrorFailingURLSessionTaskErrorKey=LocalDownloadTask <2239B6E5-647F-4AFE-B1BC-D3628E3DB386>.<1>, _NSURLErrorRelatedURLSessionTaskErrorKey=( "LocalDownloadTask <2239B6E5-647F-4AFE-B1BC-D3628E3DB386>.<1>" ), NSLocalizedDescription=The request timed out., NSErrorFailingURLStringKey=https://app-measurement.com/config/app/1:342785214615:ios:550de7cac04dfddfb681d2?platform=ios&app_instance_id=558605A3DAD0472FA22C32790F9A1BA8&gmp_version=70500, NSErrorFailingURLKey=https://app-measurement.com/config/app/1:342785214615:ios:550de7cac04dfddfb681d2?platform=ios&app_instance_id=558605A3DAD0472FA22C32790F9A1BA8&gmp_version=70500, _kCFStreamErrorDomainKey=4} 2021-02-23 19:34:05.289054+0900 mobile_90[605:348227] Connection 4: unable to determine interface type without an established connection 2021-02-23 19:34:05.289184+0900 mobile_90[605:348227] Connection 4: unable to determine fallback status without a connection 2021-02-23 19:34:05.289864+0900 mobile_90[605:348227] Task <2239B6E5-647F-4AFE-B1BC-D3628E3DB386>.<1> HTTP load failed, 0/0 bytes (error code: -999 [1:89]) 2021-02-23 19:34:05.295171+0900 mobile_90[605:348568] 7.6.0 - [Firebase/Analytics][I-ACS023128] Network request failed to fetch remote config. Code, Error: 0, Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo={_kCFStreamErrorCodeKey=-2103, _NSURLErrorFailingURLSessionTaskErrorKey=LocalDownloadTask <2239B6E5-647F-4AFE-B1BC-D3628E3DB386>.<1>, _NSURLErrorRelatedURLSessionTaskErrorKey=( "LocalDownloadTask <2239B6E5-647F-4AFE-B1BC-D3628E3DB386>.<1>" ), NSLocalizedDescription=The request timed out., NSErrorFailingURLStringKey=https://app-measurement.com/config/app/1:342785214615:ios:550de7cac04dfddfb681d2?platform=ios&app_instance_id=558605A3DAD0472FA22C32790F9A1BA8&gmp_version=70500, NSErrorFailingURLKey=https://app-measurement.com/config/app/1:342785214615:ios:550de7cac04dfddfb681d2?platform=ios&app_instance_id=558605A3DAD0472FA22C32790F9A1BA8&gmp_version=70500, _kCFStreamErrorDomainKey=4} 2021-02-23 19:34:05.295793+0900 mobile_90[605:348568] 7.6.0 - [Firebase/Analytics][I-ACS023129] Network fetch failed. Will retry later. Code, error: 0, Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo={_kCFStreamErrorCodeKey=-2103, _NSURLErrorFailingURLSessionTaskErrorKey=LocalDownloadTask <2239B6E5-647F-4AFE-B1BC-D3628E3DB386>.<1>, _NSURLErrorRelatedURLSessionTaskErrorKey=( "LocalDownloadTask <2239B6E5-647F-4AFE-B1BC-D3628E3DB386>.<1>" ), NSLocalizedDescription=The request timed out., NSErrorFailingURLStringKey=https://app-measurement.com/config/app/1:342785214615:ios:550de7cac04dfddfb681d2?platform=ios&app_instance_id=558605A3DAD0472FA22C32790F9A1BA8&gmp_version=70500, NSErrorFailingURLKey=https://app-measurement.com/config/app/1:342785214615:ios:550de7cac04dfddfb681d2?platform=ios&app_instance_id=558605A3DAD0472FA22C32790F9A1BA8&gmp_version=70500, _kCFStreamErrorDomainKey=4} 2021-02-23 19:34:22.204212+0900 mobile_90[605:348624] Task <C49B1D6D-0B35-47DD-8F16-1C3029AC8BED>.<2> finished with error [-1001] Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo={NSUnderlyingError=0x28320dcb0 {Error Domain=kCFErrorDomainCFNetwork Code=-1001 "(null)" UserInfo={_kCFStreamErrorCodeKey=-2102, _kCFStreamErrorDomainKey=4}}, NSErrorFailingURLStringKey=https://firebaselogging-pa.googleapis.com/v1/firelog/legacy/batchlog, NSErrorFailingURLKey=https://firebaselogging-pa.googleapis.com/v1/firelog/legacy/batchlog, _kCFStreamErrorDomainKey=4, _kCFStreamErrorCodeKey=-2102, NSLocalizedDescription=The request timed out.} 2021-02-23 19:34:22.209513+0900 mobile_90[605:348478] Task <C49B1D6D-0B35-47DD-8F16-1C3029AC8BED>.<2> HTTP load failed, 0/0 bytes (error code: -999 [1:89]) 2021-02-23 19:34:41.610002+0900 mobile_90[605:348568] Connection 5: received failure notification 2021-02-23 19:34:41.610075+0900 mobile_90[605:348568] Connection 5: failed to connect 1:60, reason -1 2021-02-23 19:34:41.610097+0900 mobile_90[605:348568] Connection 5: encountered error(1:60) 2021-02-23 19:34:41.611853+0900 mobile_90[605:348568] Task <4CA63DF6-0A3C-441A-A2C5-CFBF794AB21C>.<1> HTTP load failed, 0/0 bytes (error code: -1001 [1:60]) 2021-02-23 19:34:41.612242+0900 mobile_90[605:348568] Task <4CA63DF6-0A3C-441A-A2C5-CFBF794AB21C>.<1> finished with error [-1001] Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo={_kCFStreamErrorCodeKey=60, NSUnderlyingError=0x283284e40 {Error Domain=kCFErrorDomainCFNetwork Code=-1001 "(null)" UserInfo={_kCFStreamErrorCodeKey=60, _kCFStreamErrorDomainKey=1}}, _NSURLErrorFailingURLSessionTaskErrorKey=LocalDataTask <4CA63DF6-0A3C-441A-A2C5-CFBF794AB21C>.<1>, _NSURLErrorRelatedURLSessionTaskErrorKey=( "LocalDataTask <4CA63DF6-0A3C-441A-A2C5-CFBF794AB21C>.<1>" ), NSLocalizedDescription=The request timed out., NSErrorFailingURLStringKey=https://90factory.com/api/auth/m/login, NSErrorFailingURLKey=https://90factory.com/api/auth/m/login, _kCFStreamErrorDomainKey=1} 2021-02-23 19:34:53.485650+0900 mobile_90[605:348478] Task <D61C2DF4-0FD1-4924-99CE-ECBB6F0ABC01>.<2> finished with error [-1001] Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo={NSErrorFailingURLStringKey=https://device-provisioning.googleapis.com/checkin, NSErrorFailingURLKey=https://device-provisioning.googleapis.com/checkin, _kCFStreamErrorDomainKey=4, _kCFStreamErrorCodeKey=-2103, NSLocalizedDescription=The request timed out.} 2021-02-23 19:34:53.492651+0900 mobile_90[605:348701] Task <D61C2DF4-0FD1-4924-99CE-ECBB6F0ABC01>.<2> HTTP load failed, 0/0 bytes (error code: -999 [1:89]) 2021-02-23 19:34:53.494264+0900 mobile_90[605:348727] 7.6.0 - [Firebase/InstanceID][I-IID003009] Failed to fetch default token Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo={NSErrorFailingURLStringKey=https://device-provisioning.googleapis.com/checkin, NSErrorFailingURLKey=https://device-provisioning.googleapis.com/checkin, _kCFStreamErrorDomainKey=4, _kCFStreamErrorCodeKey=-2103, NSLocalizedDescription=The request timed out.} 2021-02-23 19:35:57.660860+0900 mobile_90[605:348701] Task <6293B453-3398-4302-BAE6-7550EF17C119>.<3> finished with error [-1001] Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo={NSErrorFailingURLStringKey=https://device-provisioning.googleapis.com/checkin, NSErrorFailingURLKey=https://device-provisioning.googleapis.com/checkin, _kCFStreamErrorDomainKey=4, _kCFStreamErrorCodeKey=-2103, NSLocalizedDescription=The request timed out.} 2021-02-23 19:35:57.662709+0900 mobile_90[605:348910] 7.6.0 - [Firebase/InstanceID][I-IID003009] Failed to fetch default token Error Domain=NSURLErrorDomain Code=-1001 "The request timed out." UserInfo={NSErrorFailingURLStringKey=https://device-provisioning.googleapis.com/checkin, NSErrorFailingURLKey=https://device-provisioning.googleapis.com/checkin, _kCFStreamErrorDomainKey=4, _kCFStreamErrorCodeKey=-2103, NSLocalizedDescription=The request timed out.} 2021-02-23 19:35:57.666306+0900 mobile_90[605:348819] Task <6293B453-3398-4302-BAE6-7550EF17C119>.<3> HTTP load failed, 0/0 bytes (error code: -999 [1:89])
run-ios가 갑자기 실행 안되는 경우
- 여태 잘 썼는데, 그닥 건드린 것도 없는데 모듈 에러 막 나면서 빌드 안되는 경우
react-native run-ios 실패
에러 예시
$ npx react-native run-ios error React Native CLI uses autolinking for native dependencies, but the following modules are linked manually: - react-native-linear-gradient (to unlink run: "react-native unlink react-native-linear-gradient") This is likely happening when upgrading React Native from below 0.60 to 0.60 or above. Going forward, you can unlink this dependency via "react-native unlink <dependency>" and it will be included in your app automatically. If a library isn't compatible with autolinking, disregard this message and notify the library maintainers. Read more about autolinking: https://github.com/react-native-community/cli/blob/master/docs/autolinking.md info Found Xcode workspace "DiveInto.xcworkspace" info Building (using "xcodebuild -workspace DiveInto.xcworkspace -configuration Debug -scheme DiveInto -destination id=EBAAF219-03A3-4C41-B2E6-2EAE6DA96EB3") error Failed to build iOS project. We ran "xcodebuild" command but it exited with error code 65. To debug build logs further, consider building your app with Xcode.app, by opening DiveInto.xcworkspace. Run CLI with --verbose flag for more details. Command line invocation: /Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -workspace DiveInto.xcworkspace -configuration Debug -scheme DiveInto -destination id=EBAAF219-03A3-4C41-B2E6-2EAE6DA96EB3 note: Using new build system note: Building targets in parallel note: Planning build note: Using build description from disk CompileC /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNCMaskedView.build/Objects-normal/x86_64/RNCMaskedView.o /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/@react-native-community/masked-view/ios/RNCMaskedView.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'RNCMaskedView' from project 'Pods') cd /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods export LANG\=en_US.US-ASCII /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target x86_64-apple-ios9.0-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path\=/Users/haneojin/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/haneojin/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 -DPOD_CONFIGURATION_DEBUG\=1 -DDEBUG\=1 -DCOCOAPODS\=1 -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.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/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Index/DataStore -iquote /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNCMaskedView.build/RNCMaskedView-generated-files.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNCMaskedView.build/RNCMaskedView-own-target-headers.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNCMaskedView.build/RNCMaskedView-all-non-framework-target-headers.hmap -ivfsoverlay /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNCMaskedView.build/all-product-headers.yaml -iquote /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNCMaskedView.build/RNCMaskedView-project-headers.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Products/Debug-iphonesimulator/RNCMaskedView/include -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Private -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Private/RNCMaskedView -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/DoubleConversion -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/FBLazyVector -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/FBReactNativeSpec -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/RCTRequired -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/RCTTypeSafety -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/RNCMaskedView -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-Core -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-RCTText -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-callinvoker -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-cxxreact -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsi -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsiexecutor -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsinspector -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/ReactCommon -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/Yoga -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/glog -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNCMaskedView.build/DerivedSources-normal/x86_64 -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNCMaskedView.build/DerivedSources/x86_64 -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNCMaskedView.build/DerivedSources -F/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Products/Debug-iphonesimulator/RNCMaskedView -fmodule-map-file\=/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React/React-Core.modulemap -fmodule-map-file\=/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/yoga/Yoga.modulemap -include /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Target\ Support\ Files/RNCMaskedView/RNCMaskedView-prefix.pch -MMD -MT dependencies -MF /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNCMaskedView.build/Objects-normal/x86_64/RNCMaskedView.d --serialize-diagnostics /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNCMaskedView.build/Objects-normal/x86_64/RNCMaskedView.dia -c /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/@react-native-community/masked-view/ios/RNCMaskedView.m -o /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNCMaskedView.build/Objects-normal/x86_64/RNCMaskedView.o CompileC /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/Objects-normal/x86_64/BVLinearGradientLayer.o /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-linear-gradient/BVLinearGradient/BVLinearGradientLayer.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'BVLinearGradient' from project 'Pods') cd /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods export LANG\=en_US.US-ASCII /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target x86_64-apple-ios9.0-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path\=/Users/haneojin/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/haneojin/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 -DPOD_CONFIGURATION_DEBUG\=1 -DDEBUG\=1 -DCOCOAPODS\=1 -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.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/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Index/DataStore -iquote /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/BVLinearGradient-generated-files.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/BVLinearGradient-own-target-headers.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/BVLinearGradient-all-non-framework-target-headers.hmap -ivfsoverlay /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/all-product-headers.yaml -iquote /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/BVLinearGradient-project-headers.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Products/Debug-iphonesimulator/BVLinearGradient/include -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Private -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Private/BVLinearGradient -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/BVLinearGradient -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/DoubleConversion -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/FBLazyVector -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/FBReactNativeSpec -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/RCTRequired -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/RCTTypeSafety -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-Core -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-RCTText -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-callinvoker -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-cxxreact -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsi -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsiexecutor -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsinspector -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/ReactCommon -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/Yoga -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/glog -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/DerivedSources-normal/x86_64 -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/DerivedSources/x86_64 -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/DerivedSources -F/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Products/Debug-iphonesimulator/BVLinearGradient -fmodule-map-file\=/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React/React-Core.modulemap -fmodule-map-file\=/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/yoga/Yoga.modulemap -include /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Target\ Support\ Files/BVLinearGradient/BVLinearGradient-prefix.pch -MMD -MT dependencies -MF /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/Objects-normal/x86_64/BVLinearGradientLayer.d --serialize-diagnostics /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/Objects-normal/x86_64/BVLinearGradientLayer.dia -c /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-linear-gradient/BVLinearGradient/BVLinearGradientLayer.m -o /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/Objects-normal/x86_64/BVLinearGradientLayer.o CompileC /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/Objects-normal/x86_64/BVLinearGradient.o /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-linear-gradient/BVLinearGradient/BVLinearGradient.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'BVLinearGradient' from project 'Pods') cd /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods export LANG\=en_US.US-ASCII /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target x86_64-apple-ios9.0-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path\=/Users/haneojin/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/haneojin/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 -DPOD_CONFIGURATION_DEBUG\=1 -DDEBUG\=1 -DCOCOAPODS\=1 -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.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/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Index/DataStore -iquote /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/BVLinearGradient-generated-files.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/BVLinearGradient-own-target-headers.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/BVLinearGradient-all-non-framework-target-headers.hmap -ivfsoverlay /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/all-product-headers.yaml -iquote /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/BVLinearGradient-project-headers.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Products/Debug-iphonesimulator/BVLinearGradient/include -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Private -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Private/BVLinearGradient -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/BVLinearGradient -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/DoubleConversion -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/FBLazyVector -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/FBReactNativeSpec -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/RCTRequired -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/RCTTypeSafety -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-Core -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-RCTText -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-callinvoker -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-cxxreact -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsi -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsiexecutor -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsinspector -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/ReactCommon -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/Yoga -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/glog -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/DerivedSources-normal/x86_64 -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/DerivedSources/x86_64 -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/DerivedSources -F/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Products/Debug-iphonesimulator/BVLinearGradient -fmodule-map-file\=/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React/React-Core.modulemap -fmodule-map-file\=/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/yoga/Yoga.modulemap -include /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Target\ Support\ Files/BVLinearGradient/BVLinearGradient-prefix.pch -MMD -MT dependencies -MF /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/Objects-normal/x86_64/BVLinearGradient.d --serialize-diagnostics /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/Objects-normal/x86_64/BVLinearGradient.dia -c /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-linear-gradient/BVLinearGradient/BVLinearGradient.m -o /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/Objects-normal/x86_64/BVLinearGradient.o CompileC /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/Objects-normal/x86_64/BVLinearGradient-dummy.o /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Target\ Support\ Files/BVLinearGradient/BVLinearGradient-dummy.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'BVLinearGradient' from project 'Pods') cd /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods export LANG\=en_US.US-ASCII /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target x86_64-apple-ios9.0-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path\=/Users/haneojin/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/haneojin/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 -DPOD_CONFIGURATION_DEBUG\=1 -DDEBUG\=1 -DCOCOAPODS\=1 -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.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/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Index/DataStore -iquote /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/BVLinearGradient-generated-files.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/BVLinearGradient-own-target-headers.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/BVLinearGradient-all-non-framework-target-headers.hmap -ivfsoverlay /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/all-product-headers.yaml -iquote /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/BVLinearGradient-project-headers.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Products/Debug-iphonesimulator/BVLinearGradient/include -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Private -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Private/BVLinearGradient -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/BVLinearGradient -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/DoubleConversion -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/FBLazyVector -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/FBReactNativeSpec -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/RCTRequired -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/RCTTypeSafety -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-Core -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-RCTText -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-callinvoker -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-cxxreact -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsi -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsiexecutor -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsinspector -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/ReactCommon -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/Yoga -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/glog -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/DerivedSources-normal/x86_64 -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/DerivedSources/x86_64 -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/DerivedSources -F/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Products/Debug-iphonesimulator/BVLinearGradient -fmodule-map-file\=/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React/React-Core.modulemap -fmodule-map-file\=/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/yoga/Yoga.modulemap -include /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Target\ Support\ Files/BVLinearGradient/BVLinearGradient-prefix.pch -MMD -MT dependencies -MF /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/Objects-normal/x86_64/BVLinearGradient-dummy.d --serialize-diagnostics /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/Objects-normal/x86_64/BVLinearGradient-dummy.dia -c /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Target\ Support\ Files/BVLinearGradient/BVLinearGradient-dummy.m -o /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/Objects-normal/x86_64/BVLinearGradient-dummy.o CompileC /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/Objects-normal/x86_64/BVLinearGradientManager.o /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-linear-gradient/BVLinearGradient/BVLinearGradientManager.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'BVLinearGradient' from project 'Pods') cd /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods export LANG\=en_US.US-ASCII /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target x86_64-apple-ios9.0-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path\=/Users/haneojin/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/haneojin/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 -DPOD_CONFIGURATION_DEBUG\=1 -DDEBUG\=1 -DCOCOAPODS\=1 -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.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/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Index/DataStore -iquote /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/BVLinearGradient-generated-files.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/BVLinearGradient-own-target-headers.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/BVLinearGradient-all-non-framework-target-headers.hmap -ivfsoverlay /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/all-product-headers.yaml -iquote /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/BVLinearGradient-project-headers.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Products/Debug-iphonesimulator/BVLinearGradient/include -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Private -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Private/BVLinearGradient -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/BVLinearGradient -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/DoubleConversion -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/FBLazyVector -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/FBReactNativeSpec -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/RCTRequired -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/RCTTypeSafety -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-Core -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-RCTText -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-callinvoker -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-cxxreact -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsi -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsiexecutor -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsinspector -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/ReactCommon -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/Yoga -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/glog -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/DerivedSources-normal/x86_64 -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/DerivedSources/x86_64 -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/DerivedSources -F/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Products/Debug-iphonesimulator/BVLinearGradient -fmodule-map-file\=/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React/React-Core.modulemap -fmodule-map-file\=/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/yoga/Yoga.modulemap -include /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Target\ Support\ Files/BVLinearGradient/BVLinearGradient-prefix.pch -MMD -MT dependencies -MF /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/Objects-normal/x86_64/BVLinearGradientManager.d --serialize-diagnostics /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/Objects-normal/x86_64/BVLinearGradientManager.dia -c /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-linear-gradient/BVLinearGradient/BVLinearGradientManager.m -o /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/BVLinearGradient.build/Objects-normal/x86_64/BVLinearGradientManager.o CompileC /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/Objects-normal/x86_64/RNNaverMapView.o /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RNNaverMapView.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'react-native-nmap' from project 'Pods') cd /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods export LANG\=en_US.US-ASCII /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target x86_64-apple-ios9.0-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path\=/Users/haneojin/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/haneojin/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 -DPOD_CONFIGURATION_DEBUG\=1 -DDEBUG\=1 -DCOCOAPODS\=1 -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.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/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Index/DataStore -iquote /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/react-native-nmap-generated-files.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/react-native-nmap-own-target-headers.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/react-native-nmap-all-non-framework-target-headers.hmap -ivfsoverlay /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/all-product-headers.yaml -iquote /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/react-native-nmap-project-headers.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Products/Debug-iphonesimulator/react-native-nmap/include -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Private -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Private/react-native-nmap -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/DoubleConversion -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/FBLazyVector -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/FBReactNativeSpec -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/RCTRequired -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/RCTTypeSafety -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-Core -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-RCTText -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-callinvoker -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-cxxreact -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsi -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsiexecutor -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsinspector -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/ReactCommon -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/Yoga -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/glog -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/react-native-nmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/DerivedSources-normal/x86_64 -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/DerivedSources/x86_64 -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/DerivedSources -F/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Products/Debug-iphonesimulator/react-native-nmap -F/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework -fmodule-map-file\=/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React/React-Core.modulemap -fmodule-map-file\=/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/yoga/Yoga.modulemap -include /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Target\ Support\ Files/react-native-nmap/react-native-nmap-prefix.pch -MMD -MT dependencies -MF /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/Objects-normal/x86_64/RNNaverMapView.d --serialize-diagnostics /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/Objects-normal/x86_64/RNNaverMapView.dia -c /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RNNaverMapView.m -o /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/Objects-normal/x86_64/RNNaverMapView.o /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:1:1: error: expected module declaration version https://git-lfs.github.com/spec/v1 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:1:9: error: expected module declaration version https://git-lfs.github.com/spec/v1 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:1:14: error: skipping stray token version https://git-lfs.github.com/spec/v1 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:2:1: error: expected module declaration oid sha256:cb962da8796668e9483bcf1060998168aed84de64b9d69eda90ea12770936518 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:2:5: error: expected module declaration oid sha256:cb962da8796668e9483bcf1060998168aed84de64b9d69eda90ea12770936518 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:2:11: error: skipping stray token oid sha256:cb962da8796668e9483bcf1060998168aed84de64b9d69eda90ea12770936518 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:2:12: error: expected module declaration oid sha256:cb962da8796668e9483bcf1060998168aed84de64b9d69eda90ea12770936518 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:3:1: error: expected module declaration size 97 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:3:6: error: expected module declaration size 97 ^ In file included from /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RNNaverMapView.m:8: In file included from /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RNNaverMapView.h:12: /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Headers/NMFNaverMapView.h:1:1: error: unknown type name 'version' version https://git-lfs.github.com/spec/v1 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Headers/NMFNaverMapView.h:1:14: error: expected ';' after top level declarator version https://git-lfs.github.com/spec/v1 ^ ; /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Headers/NMFNaverMapView.h:2:1: error: unknown type name 'oid' oid sha256:3278739e8764ab882ba1d59e805428409fcf0b44bb4bc6da2c008099a6d397d5 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Headers/NMFNaverMapView.h:2:11: error: expected ';' after top level declarator oid sha256:3278739e8764ab882ba1d59e805428409fcf0b44bb4bc6da2c008099a6d397d5 ^ ; /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Headers/NMFNaverMapView.h:2:12: error: expected identifier or '(' oid sha256:3278739e8764ab882ba1d59e805428409fcf0b44bb4bc6da2c008099a6d397d5 ^ In file included from /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RNNaverMapView.m:8: In file included from /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RNNaverMapView.h:18: In file included from /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RCTConvert+NMFMapView.h:10: /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Headers/NMFMapView.h:1:1: error: unknown type name 'version' version https://git-lfs.github.com/spec/v1 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Headers/NMFMapView.h:1:14: error: expected ';' after top level declarator version https://git-lfs.github.com/spec/v1 ^ ; /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Headers/NMFMapView.h:2:1: error: unknown type name 'oid' oid sha256:f0ab065ff9f9fffb3ddda7ec6ad69846be6aef79a2bd7977f97abea946c98fa1 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Headers/NMFMapView.h:2:11: error: expected ';' after top level declarator oid sha256:f0ab065ff9f9fffb3ddda7ec6ad69846be6aef79a2bd7977f97abea946c98fa1 ^ ; /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Headers/NMFMapView.h:2:12: error: unknown type name 'f0ab065ff9f9fffb3ddda7ec6ad69846be6aef79a2bd7977f97abea946c98fa1' oid sha256:f0ab065ff9f9fffb3ddda7ec6ad69846be6aef79a2bd7977f97abea946c98fa1 ^ fatal error: too many errors emitted, stopping now [-ferror-limit=] 20 errors generated. CompileC /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/Objects-normal/x86_64/RNNaverMapPolylineOverlayManager.o /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RNNaverMapPolylineOverlayManager.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'react-native-nmap' from project 'Pods') cd /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods export LANG\=en_US.US-ASCII /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target x86_64-apple-ios9.0-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path\=/Users/haneojin/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/haneojin/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 -DPOD_CONFIGURATION_DEBUG\=1 -DDEBUG\=1 -DCOCOAPODS\=1 -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.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/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Index/DataStore -iquote /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/react-native-nmap-generated-files.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/react-native-nmap-own-target-headers.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/react-native-nmap-all-non-framework-target-headers.hmap -ivfsoverlay /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/all-product-headers.yaml -iquote /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/react-native-nmap-project-headers.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Products/Debug-iphonesimulator/react-native-nmap/include -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Private -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Private/react-native-nmap -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/DoubleConversion -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/FBLazyVector -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/FBReactNativeSpec -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/RCTRequired -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/RCTTypeSafety -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-Core -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-RCTText -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-callinvoker -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-cxxreact -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsi -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsiexecutor -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsinspector -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/ReactCommon -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/Yoga -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/glog -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/react-native-nmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/DerivedSources-normal/x86_64 -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/DerivedSources/x86_64 -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/DerivedSources -F/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Products/Debug-iphonesimulator/react-native-nmap -F/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework -fmodule-map-file\=/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React/React-Core.modulemap -fmodule-map-file\=/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/yoga/Yoga.modulemap -include /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Target\ Support\ Files/react-native-nmap/react-native-nmap-prefix.pch -MMD -MT dependencies -MF /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/Objects-normal/x86_64/RNNaverMapPolylineOverlayManager.d --serialize-diagnostics /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/Objects-normal/x86_64/RNNaverMapPolylineOverlayManager.dia -c /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RNNaverMapPolylineOverlayManager.m -o /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/Objects-normal/x86_64/RNNaverMapPolylineOverlayManager.o /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:1:1: error: expected module declaration version https://git-lfs.github.com/spec/v1 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:1:9: error: expected module declaration version https://git-lfs.github.com/spec/v1 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:1:14: error: skipping stray token version https://git-lfs.github.com/spec/v1 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:2:1: error: expected module declaration oid sha256:cb962da8796668e9483bcf1060998168aed84de64b9d69eda90ea12770936518 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:2:5: error: expected module declaration oid sha256:cb962da8796668e9483bcf1060998168aed84de64b9d69eda90ea12770936518 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:2:11: error: skipping stray token oid sha256:cb962da8796668e9483bcf1060998168aed84de64b9d69eda90ea12770936518 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:2:12: error: expected module declaration oid sha256:cb962da8796668e9483bcf1060998168aed84de64b9d69eda90ea12770936518 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:3:1: error: expected module declaration size 97 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:3:6: error: expected module declaration size 97 ^ In file included from /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RNNaverMapPolylineOverlayManager.m:9: In file included from /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RNNaverMapPolylineOverlay.h:10: /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Headers/NMGLatLng.h:1:1: error: unknown type name 'version' version https://git-lfs.github.com/spec/v1 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Headers/NMGLatLng.h:1:14: error: expected ';' after top level declarator version https://git-lfs.github.com/spec/v1 ^ ; /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Headers/NMGLatLng.h:2:1: error: unknown type name 'oid' oid sha256:a2e69ae05e98dd6f6e825681b190e5aacce11b0270f608e1ce21db338902a85d ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Headers/NMGLatLng.h:2:11: error: expected ';' after top level declarator oid sha256:a2e69ae05e98dd6f6e825681b190e5aacce11b0270f608e1ce21db338902a85d ^ ; /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Headers/NMGLatLng.h:2:12: error: unknown type name 'a2e69ae05e98dd6f6e825681b190e5aacce11b0270f608e1ce21db338902a85d' oid sha256:a2e69ae05e98dd6f6e825681b190e5aacce11b0270f608e1ce21db338902a85d ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Headers/NMGLatLng.h:3:5: error: expected ';' after top level declarator size 3250 ^ ; In file included from /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RNNaverMapPolylineOverlayManager.m:9: In file included from /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RNNaverMapPolylineOverlay.h:13: /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RCTConvert+NMFMapView.h:16:4: error: expected a type + (NMGLatLng *) NMGLatLng: (id)json; ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RCTConvert+NMFMapView.h:16:1: error: missing context for method declaration + (NMGLatLng *) NMGLatLng: (id)json; ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RCTConvert+NMFMapView.h:17:1: error: expected method body + (NMGLatLngBounds *) NMGLatLngBounds: (id)json; ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RCTConvert+NMFMapView.h:18:4: error: expected a type + (NMFAlignType *) NMFAlignType: (id)json; ^ fatal error: too many errors emitted, stopping now [-ferror-limit=] 20 errors generated. CompileC /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/Objects-normal/x86_64/RNNaverMapViewManager.o /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RNNaverMapViewManager.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'react-native-nmap' from project 'Pods') cd /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods export LANG\=en_US.US-ASCII /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target x86_64-apple-ios9.0-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path\=/Users/haneojin/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/haneojin/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 -DPOD_CONFIGURATION_DEBUG\=1 -DDEBUG\=1 -DCOCOAPODS\=1 -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.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/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Index/DataStore -iquote /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/react-native-nmap-generated-files.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/react-native-nmap-own-target-headers.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/react-native-nmap-all-non-framework-target-headers.hmap -ivfsoverlay /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/all-product-headers.yaml -iquote /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/react-native-nmap-project-headers.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Products/Debug-iphonesimulator/react-native-nmap/include -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Private -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Private/react-native-nmap -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/DoubleConversion -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/FBLazyVector -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/FBReactNativeSpec -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/RCTRequired -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/RCTTypeSafety -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-Core -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-RCTText -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-callinvoker -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-cxxreact -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsi -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsiexecutor -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsinspector -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/ReactCommon -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/Yoga -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/glog -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/react-native-nmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/DerivedSources-normal/x86_64 -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/DerivedSources/x86_64 -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/DerivedSources -F/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Products/Debug-iphonesimulator/react-native-nmap -F/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework -fmodule-map-file\=/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React/React-Core.modulemap -fmodule-map-file\=/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/yoga/Yoga.modulemap -include /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Target\ Support\ Files/react-native-nmap/react-native-nmap-prefix.pch -MMD -MT dependencies -MF /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/Objects-normal/x86_64/RNNaverMapViewManager.d --serialize-diagnostics /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/Objects-normal/x86_64/RNNaverMapViewManager.dia -c /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RNNaverMapViewManager.m -o /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/Objects-normal/x86_64/RNNaverMapViewManager.o /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:1:1: error: expected module declaration version https://git-lfs.github.com/spec/v1 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:1:9: error: expected module declaration version https://git-lfs.github.com/spec/v1 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:1:14: error: skipping stray token version https://git-lfs.github.com/spec/v1 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:2:1: error: expected module declaration oid sha256:cb962da8796668e9483bcf1060998168aed84de64b9d69eda90ea12770936518 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:2:5: error: expected module declaration oid sha256:cb962da8796668e9483bcf1060998168aed84de64b9d69eda90ea12770936518 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:2:11: error: skipping stray token oid sha256:cb962da8796668e9483bcf1060998168aed84de64b9d69eda90ea12770936518 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:2:12: error: expected module declaration oid sha256:cb962da8796668e9483bcf1060998168aed84de64b9d69eda90ea12770936518 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:3:1: error: expected module declaration size 97 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:3:6: error: expected module declaration size 97 ^ In file included from /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RNNaverMapViewManager.m:12: /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Headers/NMFNaverMapView.h:1:1: error: unknown type name 'version' version https://git-lfs.github.com/spec/v1 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Headers/NMFNaverMapView.h:1:14: error: expected ';' after top level declarator version https://git-lfs.github.com/spec/v1 ^ ; /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Headers/NMFNaverMapView.h:2:1: error: unknown type name 'oid' oid sha256:3278739e8764ab882ba1d59e805428409fcf0b44bb4bc6da2c008099a6d397d5 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Headers/NMFNaverMapView.h:2:11: error: expected ';' after top level declarator oid sha256:3278739e8764ab882ba1d59e805428409fcf0b44bb4bc6da2c008099a6d397d5 ^ ; /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Headers/NMFNaverMapView.h:2:12: error: expected identifier or '(' oid sha256:3278739e8764ab882ba1d59e805428409fcf0b44bb4bc6da2c008099a6d397d5 ^ In file included from /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RNNaverMapViewManager.m:17: /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RCTConvert+NMFMapView.h:16:4: error: expected a type + (NMGLatLng *) NMGLatLng: (id)json; ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RCTConvert+NMFMapView.h:16:1: error: missing context for method declaration + (NMGLatLng *) NMGLatLng: (id)json; ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RCTConvert+NMFMapView.h:17:1: error: expected method body + (NMGLatLngBounds *) NMGLatLngBounds: (id)json; ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RCTConvert+NMFMapView.h:18:4: error: expected a type + (NMFAlignType *) NMFAlignType: (id)json; ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RCTConvert+NMFMapView.h:18:1: error: missing context for method declaration + (NMFAlignType *) NMFAlignType: (id)json; ^ fatal error: too many errors emitted, stopping now [-ferror-limit=] 20 errors generated. CompileC /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/Objects-normal/x86_64/RNNaverMapPolylineOverlay.o /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RNNaverMapPolylineOverlay.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'react-native-nmap' from project 'Pods') cd /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods export LANG\=en_US.US-ASCII /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target x86_64-apple-ios9.0-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path\=/Users/haneojin/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/haneojin/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 -DPOD_CONFIGURATION_DEBUG\=1 -DDEBUG\=1 -DCOCOAPODS\=1 -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.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/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Index/DataStore -iquote /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/react-native-nmap-generated-files.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/react-native-nmap-own-target-headers.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/react-native-nmap-all-non-framework-target-headers.hmap -ivfsoverlay /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/all-product-headers.yaml -iquote /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/react-native-nmap-project-headers.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Products/Debug-iphonesimulator/react-native-nmap/include -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Private -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Private/react-native-nmap -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/DoubleConversion -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/FBLazyVector -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/FBReactNativeSpec -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/RCTRequired -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/RCTTypeSafety -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-Core -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-RCTText -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-callinvoker -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-cxxreact -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsi -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsiexecutor -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsinspector -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/ReactCommon -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/Yoga -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/glog -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/react-native-nmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/DerivedSources-normal/x86_64 -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/DerivedSources/x86_64 -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/DerivedSources -F/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Products/Debug-iphonesimulator/react-native-nmap -F/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework -fmodule-map-file\=/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React/React-Core.modulemap -fmodule-map-file\=/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/yoga/Yoga.modulemap -include /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Target\ Support\ Files/react-native-nmap/react-native-nmap-prefix.pch -MMD -MT dependencies -MF /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/Objects-normal/x86_64/RNNaverMapPolylineOverlay.d --serialize-diagnostics /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/Objects-normal/x86_64/RNNaverMapPolylineOverlay.dia -c /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RNNaverMapPolylineOverlay.m -o /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/Objects-normal/x86_64/RNNaverMapPolylineOverlay.o /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:1:1: error: expected module declaration version https://git-lfs.github.com/spec/v1 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:1:9: error: expected module declaration version https://git-lfs.github.com/spec/v1 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:1:14: error: skipping stray token version https://git-lfs.github.com/spec/v1 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:2:1: error: expected module declaration oid sha256:cb962da8796668e9483bcf1060998168aed84de64b9d69eda90ea12770936518 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:2:5: error: expected module declaration oid sha256:cb962da8796668e9483bcf1060998168aed84de64b9d69eda90ea12770936518 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:2:11: error: skipping stray token oid sha256:cb962da8796668e9483bcf1060998168aed84de64b9d69eda90ea12770936518 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:2:12: error: expected module declaration oid sha256:cb962da8796668e9483bcf1060998168aed84de64b9d69eda90ea12770936518 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:3:1: error: expected module declaration size 97 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Modules/module.modulemap:3:6: error: expected module declaration size 97 ^ In file included from /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RNNaverMapPolylineOverlay.m:7: In file included from /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RNNaverMapPolylineOverlay.h:10: /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Headers/NMGLatLng.h:1:1: error: unknown type name 'version' version https://git-lfs.github.com/spec/v1 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Headers/NMGLatLng.h:1:14: error: expected ';' after top level declarator version https://git-lfs.github.com/spec/v1 ^ ; /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Headers/NMGLatLng.h:2:1: error: unknown type name 'oid' oid sha256:a2e69ae05e98dd6f6e825681b190e5aacce11b0270f608e1ce21db338902a85d ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Headers/NMGLatLng.h:2:11: error: expected ';' after top level declarator oid sha256:a2e69ae05e98dd6f6e825681b190e5aacce11b0270f608e1ce21db338902a85d ^ ; /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Headers/NMGLatLng.h:2:12: error: unknown type name 'a2e69ae05e98dd6f6e825681b190e5aacce11b0270f608e1ce21db338902a85d' oid sha256:a2e69ae05e98dd6f6e825681b190e5aacce11b0270f608e1ce21db338902a85d ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Headers/NMGLatLng.h:3:5: error: expected ';' after top level declarator size 3250 ^ ; In file included from /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RNNaverMapPolylineOverlay.m:7: In file included from /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RNNaverMapPolylineOverlay.h:13: In file included from /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RCTConvert+NMFMapView.h:10: /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Headers/NMFMapView.h:1:1: error: unknown type name 'version' version https://git-lfs.github.com/spec/v1 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Headers/NMFMapView.h:1:14: error: expected ';' after top level declarator version https://git-lfs.github.com/spec/v1 ^ ; /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Headers/NMFMapView.h:2:1: error: unknown type name 'oid' oid sha256:f0ab065ff9f9fffb3ddda7ec6ad69846be6aef79a2bd7977f97abea946c98fa1 ^ /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework/NMapsMap.framework/Headers/NMFMapView.h:2:11: error: expected ';' after top level declarator oid sha256:f0ab065ff9f9fffb3ddda7ec6ad69846be6aef79a2bd7977f97abea946c98fa1 ^ ; CompileC /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/Objects-normal/x86_64/RNNaverMapPolygonOverlayManager.o /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RNNaverMapPolygonOverlayManager.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'react-native-nmap' from project 'Pods') cd /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods export LANG\=en_US.US-ASCII /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target x86_64-apple-ios9.0-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path\=/Users/haneojin/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/haneojin/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 -DPOD_CONFIGURATION_DEBUG\=1 -DDEBUG\=1 -DCOCOAPODS\=1 -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.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/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Index/DataStore -iquote /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/react-native-nmap-generated-files.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/react-native-nmap-own-target-headers.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/react-native-nmap-all-non-framework-target-headers.hmap -ivfsoverlay /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/all-product-headers.yaml -iquote /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/react-native-nmap-project-headers.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Products/Debug-iphonesimulator/react-native-nmap/include -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Private -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Private/react-native-nmap -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/DoubleConversion -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/FBLazyVector -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/FBReactNativeSpec -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/RCTRequired -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/RCTTypeSafety -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-Core -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-RCTText -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-callinvoker -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-cxxreact -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsi -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsiexecutor -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsinspector -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/ReactCommon -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/Yoga -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/glog -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/react-native-nmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/DerivedSources-normal/x86_64 -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/DerivedSources/x86_64 -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/DerivedSources -F/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Products/Debug-iphonesimulator/react-native-nmap -F/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework -fmodule-map-file\=/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React/React-Core.modulemap -fmodule-map-file\=/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/yoga/Yoga.modulemap -include /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Target\ Support\ Files/react-native-nmap/react-native-nmap-prefix.pch -MMD -MT dependencies -MF /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/Objects-normal/x86_64/RNNaverMapPolygonOverlayManager.d --serialize-diagnostics /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/Objects-normal/x86_64/RNNaverMapPolygonOverlayManager.dia -c /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RNNaverMapPolygonOverlayManager.m -o /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/Objects-normal/x86_64/RNNaverMapPolygonOverlayManager.o CompileC /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/Objects-normal/x86_64/RNNaverMapPolygonOverlay.o /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RNNaverMapPolygonOverlay.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'react-native-nmap' from project 'Pods') cd /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods export LANG\=en_US.US-ASCII /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target x86_64-apple-ios9.0-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path\=/Users/haneojin/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/haneojin/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 -DPOD_CONFIGURATION_DEBUG\=1 -DDEBUG\=1 -DCOCOAPODS\=1 -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.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/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Index/DataStore -iquote /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/react-native-nmap-generated-files.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/react-native-nmap-own-target-headers.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/react-native-nmap-all-non-framework-target-headers.hmap -ivfsoverlay /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/all-product-headers.yaml -iquote /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/react-native-nmap-project-headers.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Products/Debug-iphonesimulator/react-native-nmap/include -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Private -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Private/react-native-nmap -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/DoubleConversion -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/FBLazyVector -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/FBReactNativeSpec -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/RCTRequired -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/RCTTypeSafety -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-Core -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-RCTText -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-callinvoker -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-cxxreact -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsi -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsiexecutor -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsinspector -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/ReactCommon -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/Yoga -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/glog -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/react-native-nmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/DerivedSources-normal/x86_64 -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/DerivedSources/x86_64 -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/DerivedSources -F/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Products/Debug-iphonesimulator/react-native-nmap -F/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework -fmodule-map-file\=/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React/React-Core.modulemap -fmodule-map-file\=/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/yoga/Yoga.modulemap -include /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Target\ Support\ Files/react-native-nmap/react-native-nmap-prefix.pch -MMD -MT dependencies -MF /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/Objects-normal/x86_64/RNNaverMapPolygonOverlay.d --serialize-diagnostics /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/Objects-normal/x86_64/RNNaverMapPolygonOverlay.dia -c /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RNNaverMapPolygonOverlay.m -o /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/Objects-normal/x86_64/RNNaverMapPolygonOverlay.o CompileC /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/Objects-normal/x86_64/RNNaverMapPathOverlayManager.o /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RNNaverMapPathOverlayManager.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'react-native-nmap' from project 'Pods') cd /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods export LANG\=en_US.US-ASCII /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target x86_64-apple-ios9.0-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path\=/Users/haneojin/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/haneojin/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 -DPOD_CONFIGURATION_DEBUG\=1 -DDEBUG\=1 -DCOCOAPODS\=1 -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.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/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Index/DataStore -iquote /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/react-native-nmap-generated-files.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/react-native-nmap-own-target-headers.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/react-native-nmap-all-non-framework-target-headers.hmap -ivfsoverlay /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/all-product-headers.yaml -iquote /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/react-native-nmap-project-headers.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Products/Debug-iphonesimulator/react-native-nmap/include -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Private -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Private/react-native-nmap -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/DoubleConversion -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/FBLazyVector -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/FBReactNativeSpec -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/RCTRequired -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/RCTTypeSafety -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-Core -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-RCTText -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-callinvoker -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-cxxreact -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsi -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsiexecutor -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsinspector -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/ReactCommon -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/Yoga -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/glog -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/react-native-nmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/DerivedSources-normal/x86_64 -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/DerivedSources/x86_64 -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/DerivedSources -F/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Products/Debug-iphonesimulator/react-native-nmap -F/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework -fmodule-map-file\=/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React/React-Core.modulemap -fmodule-map-file\=/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/yoga/Yoga.modulemap -include /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Target\ Support\ Files/react-native-nmap/react-native-nmap-prefix.pch -MMD -MT dependencies -MF /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/Objects-normal/x86_64/RNNaverMapPathOverlayManager.d --serialize-diagnostics /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/Objects-normal/x86_64/RNNaverMapPathOverlayManager.dia -c /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RNNaverMapPathOverlayManager.m -o /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/Objects-normal/x86_64/RNNaverMapPathOverlayManager.o CompileC /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/Objects-normal/x86_64/RNNaverMapPathOverlay.o /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RNNaverMapPathOverlay.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'react-native-nmap' from project 'Pods') cd /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods export LANG\=en_US.US-ASCII /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target x86_64-apple-ios9.0-simulator -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -std\=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path\=/Users/haneojin/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/haneojin/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 -DPOD_CONFIGURATION_DEBUG\=1 -DDEBUG\=1 -DCOCOAPODS\=1 -DOBJC_OLD_DISPATCH_PROTOTYPES\=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.3.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/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Index/DataStore -iquote /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/react-native-nmap-generated-files.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/react-native-nmap-own-target-headers.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/react-native-nmap-all-non-framework-target-headers.hmap -ivfsoverlay /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/all-product-headers.yaml -iquote /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/react-native-nmap-project-headers.hmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Products/Debug-iphonesimulator/react-native-nmap/include -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Private -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Private/react-native-nmap -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/DoubleConversion -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/FBLazyVector -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/FBReactNativeSpec -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/RCTRequired -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/RCTTypeSafety -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-Core -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-RCTText -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-callinvoker -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-cxxreact -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsi -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsiexecutor -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React-jsinspector -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/ReactCommon -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/Yoga -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/glog -I/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/react-native-nmap -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/DerivedSources-normal/x86_64 -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/DerivedSources/x86_64 -I/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/DerivedSources -F/Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Products/Debug-iphonesimulator/react-native-nmap -F/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/NMapsMap/framework -fmodule-map-file\=/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/React/React-Core.modulemap -fmodule-map-file\=/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Headers/Public/yoga/Yoga.modulemap -include /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Target\ Support\ Files/react-native-nmap/react-native-nmap-prefix.pch -MMD -MT dependencies -MF /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/Objects-normal/x86_64/RNNaverMapPathOverlay.d --serialize-diagnostics /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/Objects-normal/x86_64/RNNaverMapPathOverlay.dia -c /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RNNaverMapPathOverlay.m -o /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/Objects-normal/x86_64/RNNaverMapPathOverlay.o warning: no rule to process file '/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Flipper-RSocket/rsocket/README.md' of type 'net.daringfireball.markdown' for architecture 'x86_64' (in target 'Flipper-RSocket' from project 'Pods') warning: no rule to process file '/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Flipper-RSocket/rsocket/benchmarks/CMakeLists.txt' of type 'text' for architecture 'x86_64' (in target 'Flipper-RSocket' from project 'Pods') warning: no rule to process file '/Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/ios/Pods/Flipper-RSocket/rsocket/benchmarks/README.md' of type 'net.daringfireball.markdown' for architecture 'x86_64' (in target 'Flipper-RSocket' from project 'Pods') ** BUILD FAILED ** The following build commands failed: CompileC /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/Objects-normal/x86_64/RNNaverMapView.o /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RNNaverMapView.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler CompileC /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/Objects-normal/x86_64/RNNaverMapPolylineOverlayManager.o /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RNNaverMapPolylineOverlayManager.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler CompileC /Users/haneojin/Library/Developer/Xcode/DerivedData/DiveInto-aiggezivodqjpxhdkrlaobegijoh/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-nmap.build/Objects-normal/x86_64/RNNaverMapViewManager.o /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile/node_modules/react-native-nmap/ios/reactNativeNMap/RNNaverMapViewManager.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (3 failures) npm ERR! code 1 npm ERR! path /Users/haneojin/Desktop/DiveInto/DivingProject-Mobile npm ERR! command failed npm ERR! command sh -c react-native run-ios npm ERR! A complete log of this run can be found in: npm ERR! /Users/haneojin/.npm/_logs/2021-02-25T08_51_28_978Z-debug.log
해결방법
- 읽어보면 빨간색 에러는 하나도 없고, Pod 어쩌고 내용이 다 모듈 관련 내용이다.
- 설치한 모듈 다 날리고 새로 설치하면 보통 해결됨.
# 모듈 설치 다 삭제 $ rm -rf node_modules $ rm -rf ios/Pods # 새로 설치 $ yarn install $ npx pod-install # 실행 $ npx react-native run-ios
connection to localhost port 8081 succeeded → Port 8081 already in use
에러 예시
$ npx react-naitve run-ios . . . Libtool /Users/night-ohl/Library/Developer/Xcode/DerivedData/mobile_90-cswahvgormkxebgcldfevadsddzm/Build/Intermediates.noindex/ArchiveIntermediates/mobile_90/IntermediateBuildFilesPath/Pods.build/Release-iphoneos/RNCMaskedView.build/Objects-normal/armv7/Binary/libRNCMaskedView.a normal armv7 (in target 'RNCMaskedView' from project 'Pods') cd /Users/night-ohl/Desktop/90fac/mobile/dev/ios/Pods export IPHONEOS_DEPLOYMENT_TARGET\=9.0 /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool -static -arch_only armv7 -D -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.4.sdk -L/Users/night-ohl/Library/Developer/Xcode/DerivedData/mobile_90-cswahvgormkxebgcldfevadsddzm/Build/Intermediates.noindex/ArchiveIntermediates/mobile_90/BuildProductsPath/Release-iphoneos/RNCMaskedView -filelist /Users/night-ohl/Library/Developer/Xcode/DerivedData/mobile_90-cswahvgormkxebgcldfevadsddzm/Build/Intermediates.noindex/ArchiveIntermediates/mobile_90/IntermediateBuildFilesPath/Pods.build/Release-iphoneos/RNCMaskedView.build/Objects-normal/armv7/RNCMaskedView.LinkFileList -dependency_info /Users/night-ohl/Library/Developer/Xcode/DerivedData/mobile_90-cswahvgormkxebgcldfevadsddzm/Build/Intermediates.noindex/ArchiveIntermediates/mobile_90/IntermediateBuildFilesPath/Pods.build/Release-iphoneos/RNCMaskedView.build/Objects-normal/armv7/RNCMaskedView_libtool_dependency_info.dat -o /Users/night-ohl/Library/Developer/Xcode/DerivedData/mobile_90-cswahvgormkxebgcldfevadsddzm/Build/Intermediates.noindex/ArchiveIntermediates/mobile_90/IntermediateBuildFilesPath/Pods.build/Release-iphoneos/RNCMaskedView.build/Objects-normal/armv7/Binary/libRNCMaskedView.a ... PhaseScriptExecution Start\ Packager /Users/night-ohl/Library/Developer/Xcode/DerivedData/mobile_90-cswahvgormkxebgcldfevadsddzm/Build/Intermediates.noindex/mobile_90.build/Debug-iphonesimulator/mobile_90.build/Script-FD10A7F022414F080027D42C.sh (in target 'mobile_90' from project 'mobile_90') cd /Users/night-ohl/Desktop/90fac/mobile/dev/ios /bin/sh -c /Users/night-ohl/Library/Developer/Xcode/DerivedData/mobile_90-cswahvgormkxebgcldfevadsddzm/Build/Intermediates.noindex/mobile_90.build/Debug-iphonesimulator/mobile_90.build/Script-FD10A7F022414F080027D42C.sh Connection to localhost port 8081 [tcp/sunproxyadmin] succeeded! Port 8081 already in use, packager is either not running or not running correctly Command PhaseScriptExecution failed with a nonzero exit code warning: no rule to process file '/Users/night-ohl/Desktop/90fac/mobile/dev/ios/Pods/Flipper-RSocket/rsocket/benchmarks/CMakeLists.txt' of type 'text' for architecture 'x86_64' (in target 'Flipper-RSocket' from project 'Pods') warning: no rule to process file '/Users/night-ohl/Desktop/90fac/mobile/dev/ios/Pods/Flipper-RSocket/rsocket/benchmarks/README.md' of type 'net.daringfireball.markdown' for architecture 'x86_64' (in target 'Flipper-RSocket' from project 'Pods') warning: no rule to process file '/Users/night-ohl/Desktop/90fac/mobile/dev/ios/Pods/Flipper-RSocket/rsocket/README.md' of type 'net.daringfireball.markdown' for architecture 'x86_64' (in target 'Flipper-RSocket' from project 'Pods') ** BUILD FAILED ** The following build commands failed: PhaseScriptExecution Start\ Packager /Users/night-ohl/Library/Developer/Xcode/DerivedData/mobile_90-cswahvgormkxebgcldfevadsddzm/Build/Intermediates.noindex/mobile_90.build/Debug-iphonesimulator/mobile_90.build/Script-FD10A7F022414F080027D42C.sh (1 failure)
해결 방안
1) 일단 포트를 다른 곳에서 쓰고있는지 확인하고 다른포트를 쓰면 되는데, ios는 포트 변경실행이 안됨.
8081 포트 쓰고있는 다른 서비스를 죽이고 실행하자.
$ lsof -i:8081 COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME com.docke 95845 night-ohl 76u IPv6 0xc62d62951670cd6d 0t0 TCP *:sunproxyadmin (LISTEN)
2) 포트 바꾸고 실행하면 빌드는 성공하는데, 앱이 뜨면서 No bundle URL present 에러가 뜸.
- npx react-native start로 실행되는
metro bundle
과 연결이 안돼서 그럼.
- ios는 port 바꾸는 옵션 안된다..-_-;;
night-ohl@MacBook-Pro[:~/Desktop/90fac/mobile/dev$ npx react-native run-ios --port 8083 info Found Xcode workspace "mobile_90.xcworkspace" info Building (using "xcodebuild -workspace mobile_90.xcworkspace -configuration Debug -scheme mobile_90 -destination id=BFC39984-33B6-4DD3-80C6-9ED8771DA751") success Successfully built the app info Installing "/Users/night-ohl/Library/Developer/Xcode/DerivedData/mobile_90-cswahvgormkxebgcldfevadsddzm/Build/Products/Debug-iphonesimulator/mobile_90.app" info Launching "com.90factory.90mobile" success Successfully launched the app on the simulator

[Firebase/Crashlytics][I-CLS000000] Failed to download settings.
- device에 빌드 시 콘솔창에 찍힌 오류
Failed to download settings.
Crashlytics 등록 절차는 제대로 마친 상태이며, 이전 release버전에서도 잘 됐었으므로 원인은 아님.
2021-03-05 12:17:41.640021+0900 mobile_90[346:20222] 7.6.0 - [Firebase/Crashlytics][I-CLS000000] Failed to download settings. If this is your first time launching the app, make sure you have enabled Crashlytics in the Firebase Console. Error Domain=FIRCLSNetworkError Code=-5 "(null)" UserInfo={status_code=404, type=2, request_id=, content_type=text/html; charset=utf-8}


Entitlements file was modified during the build, which is not supported.
Entitlements file was modified during the build
- 빌드 하던 중에 옵션을 바꾸면 발생하는 오류?
- 이슈 해결 : https://stackoverflow.com/questions/55456335/entitlements-file-was-modified-during-the-build

Entitlements file "mobile_90.entitlements" was modified during the build, which is not supported. You can disable this error by setting 'CODE_SIGN_ALLOW_ENTITLEMENTS_MODIFICATION' to 'YES', however this may cause the built product's code signature or provisioning profile to contain incorrect entitlements.
해결방안
Product > Clean Build Folder

Invalid Bundle. Ipad Multitasking support requires these orientations: ....
- 아이패드도 화면비율이 모바일처럼 출력돼서 target을 iphone, ipad로 바꿨더니 이런 문제가 생긴듯.
Invalid bundle. iPad Multitasking support requires these orientations ...
에러 내용

Invalid Bundle. iPad Multitasking support requires these orientations: 'UIInterfaceOrientationPortrait,UIInterfaceOrientationPortraitUpsideDown,UIInterfaceOrientationLandscapeLeft,UIInterfaceOrientationLandscapeRight'. Found 'UIInterfaceOrientationPortrait,UIInterfaceOrientationLandscapeLeft,UIInterfaceOrientationLandscapeRight' in bundle 'com.90factory.90mobile'.
해결방법
Info.plist 에 아래 속성 추가
<key>UIRequiresFullScreen</key> <true/>
No account with App Store Connect access have been found for the team "". App Store Connect access is required for App Store Connect distribution.
AppStore Connect 권한도 있고, distribution 인증서도 있고, 계속 잘 쓰고 있었는데 갑자기 에러나는 경우.
No account with App Store Connect access have been found for the team "". App Store Connect access is required for App Store Connect distribution.
그냥 재부팅 하면 인식 잘됨..^^;



Undefined symbol: _swift_FORCE_LOAD$_swiftWebKit
Bridging_Header 파일 생성으로 해결



다시 빌드하면 빌드 성공함!
libswiftWebKit.tbd를 추가해서 해결했다는 글도 있긴함

node_modules/react-native/scripts/find-node.sh 주석 처리하면 해결되는 케이스
에러 메세지 양상
export TAPI_ENABLE_PROJECT_HEADERS\=NO export TAPI_VERIFY_MODE\=ErrorsOnly export TARGETED_DEVICE_FAMILY\=1,2 export TARGETNAME\=react-native-codef export TARGET_BUILD_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products/Debug-iphonesimulator/react-native-codef export TARGET_DEVICE_IDENTIFIER\=D863C036-6FB1-4952-91DE-495F10A8541F export TARGET_DEVICE_MODEL\=iPhone13,2 export TARGET_DEVICE_OS_VERSION\=14.5 export TARGET_DEVICE_PLATFORM_NAME\=iphonesimulator export TARGET_NAME\=react-native-codef export TARGET_TEMP_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-codef.build export TEMP_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-codef.build export TEMP_FILES_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-codef.build export TEMP_FILE_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-codef.build export TEMP_ROOT\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex export TEST_FRAMEWORK_SEARCH_PATHS\=\ /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks\ /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.5.sdk/Developer/Library/Frameworks export TEST_LIBRARY_SEARCH_PATHS\=\ /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/lib export TOOLCHAINS\=com.apple.dt.toolchain.XcodeDefault export TOOLCHAIN_DIR\=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain export TREAT_MISSING_BASELINES_AS_TEST_FAILURES\=NO export UID\=501 export UNSTRIPPED_PRODUCT\=NO export USER\=haneojin export USER_APPS_DIR\=/Users/haneojin/Applications export USER_LIBRARY_DIR\=/Users/haneojin/Library export USE_DYNAMIC_NO_PIC\=YES export USE_HEADERMAP\=YES export USE_HEADER_SYMLINKS\=NO export USE_LLVM_TARGET_TRIPLES\=YES export USE_LLVM_TARGET_TRIPLES_FOR_CLANG\=YES export USE_LLVM_TARGET_TRIPLES_FOR_LD\=YES export USE_LLVM_TARGET_TRIPLES_FOR_TAPI\=YES export USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES\=YES export VALIDATE_DEVELOPMENT_ASSET_PATHS\=YES_ERROR export VALIDATE_PRODUCT\=NO export VALIDATE_WORKSPACE\=YES_ERROR export VALID_ARCHS\=arm64\ arm64e\ i386\ x86_64 export VERBOSE_PBXCP\=NO export VERSION_INFO_BUILDER\=haneojin export VERSION_INFO_FILE\=react-native-codef_vers.c export VERSION_INFO_STRING\=\"@\(\#\)PROGRAM:react-native-codef\ \ PROJECT:Pods-\" export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES\=NO export XCODE_APP_SUPPORT_DIR\=/Applications/Xcode.app/Contents/Developer/Library/Xcode export XCODE_PRODUCT_BUILD_VERSION\=13F100 export XCODE_VERSION_ACTUAL\=1341 export XCODE_VERSION_MAJOR\=1300 export XCODE_VERSION_MINOR\=1340 export XPCSERVICES_FOLDER_PATH\=/XPCServices export YACC\=yacc export arch\=undefined_arch export variant\=normal /bin/sh -c /Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-codef.build/Script-7E31A42112B0F113F6511B81776FFDC6.sh PhaseScriptExecution Copy\ generated\ compatibility\ header /Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/amplitude-react-native.build/Script-0CBD2F262A87D9E39127074D01FD5A92.sh (in target 'amplitude-react-native' from project 'Pods') cd /Users/haneojin/Desktop/algocare-app/ios/Pods export ACTION\=build export AD_HOC_CODE_SIGNING_ALLOWED\=YES export ALLOW_TARGET_PLATFORM_SPECIALIZATION\=NO export ALTERNATE_GROUP\=staff export ALTERNATE_MODE\=u+w,go-w,a+rX export ALTERNATE_OWNER\=haneojin export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES\=NO export ALWAYS_SEARCH_USER_PATHS\=NO export ALWAYS_USE_SEPARATE_HEADERMAPS\=NO export APPLE_INTERNAL_DEVELOPER_DIR\=/AppleInternal/Developer export APPLE_INTERNAL_DIR\=/AppleInternal export APPLE_INTERNAL_DOCUMENTATION_DIR\=/AppleInternal/Documentation export APPLE_INTERNAL_LIBRARY_DIR\=/AppleInternal/Library export APPLE_INTERNAL_TOOLS\=/AppleInternal/Developer/Tools export APPLICATION_EXTENSION_API_ONLY\=NO export APPLY_RULES_IN_COPY_FILES\=NO export APPLY_RULES_IN_COPY_HEADERS\=NO export ARCHS\=arm64 export ARCHS_STANDARD\=arm64\ x86_64\ i386 export ARCHS_STANDARD_32_64_BIT\=arm64\ i386\ x86_64 export ARCHS_STANDARD_32_BIT\=i386 export ARCHS_STANDARD_64_BIT\=arm64\ x86_64 export ARCHS_STANDARD_INCLUDING_64_BIT\=arm64\ x86_64\ i386 export ARCHS_UNIVERSAL_IPHONE_OS\=arm64\ i386\ x86_64 export ASSETCATALOG_FILTER_FOR_DEVICE_MODEL\=iPhone13,2 export ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION\=14.5 export AVAILABLE_PLATFORMS\=appletvos\ appletvsimulator\ driverkit\ iphoneos\ iphonesimulator\ macosx\ watchos\ watchsimulator export BITCODE_GENERATION_MODE\=marker export BUILD_ACTIVE_RESOURCES_ONLY\=YES export BUILD_COMPONENTS\=headers\ build export BUILD_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products export BUILD_LIBRARY_FOR_DISTRIBUTION\=NO export BUILD_ROOT\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products export BUILD_STYLE\= export BUILD_VARIANTS\=normal export BUILT_PRODUCTS_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products/Debug-iphonesimulator/amplitude-react-native export BUNDLE_CONTENTS_FOLDER_PATH_deep\=Contents/ export BUNDLE_EXECUTABLE_FOLDER_NAME_deep\=MacOS export BUNDLE_FORMAT\=shallow export BUNDLE_FRAMEWORKS_FOLDER_PATH\=Frameworks export BUNDLE_PLUGINS_FOLDER_PATH\=PlugIns export BUNDLE_PRIVATE_HEADERS_FOLDER_PATH\=PrivateHeaders export BUNDLE_PUBLIC_HEADERS_FOLDER_PATH\=Headers export CACHE_ROOT\=/var/folders/p0/fs8881996y36wkcqtj2lwtnr0000gn/C/com.apple.DeveloperTools/13.4.1-13F100/Xcode export CCHROOT\=/var/folders/p0/fs8881996y36wkcqtj2lwtnr0000gn/C/com.apple.DeveloperTools/13.4.1-13F100/Xcode export CHMOD\=/bin/chmod export CHOWN\=/usr/sbin/chown export CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED\=YES export CLANG_ANALYZER_NONNULL\=YES export CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION\=YES_AGGRESSIVE export CLANG_CXX_LANGUAGE_STANDARD\=gnu++14 export CLANG_CXX_LIBRARY\=libc++ export CLANG_ENABLE_MODULES\=YES export CLANG_ENABLE_MODULE_DEBUGGING\=NO export CLANG_ENABLE_OBJC_ARC\=YES export CLANG_ENABLE_OBJC_WEAK\=NO export CLANG_MODULES_BUILD_SESSION_FILE\=/Users/haneojin/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING\=YES export CLANG_WARN_BOOL_CONVERSION\=YES export CLANG_WARN_COMMA\=YES export CLANG_WARN_CONSTANT_CONVERSION\=YES export CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS\=YES export CLANG_WARN_DIRECT_OBJC_ISA_USAGE\=YES_ERROR export CLANG_WARN_DOCUMENTATION_COMMENTS\=YES export CLANG_WARN_EMPTY_BODY\=YES export CLANG_WARN_ENUM_CONVERSION\=YES export CLANG_WARN_INFINITE_RECURSION\=YES export CLANG_WARN_INT_CONVERSION\=YES export CLANG_WARN_NON_LITERAL_NULL_CONVERSION\=YES export CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF\=YES export CLANG_WARN_OBJC_LITERAL_CONVERSION\=YES export CLANG_WARN_OBJC_ROOT_CLASS\=YES_ERROR export CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER\=NO export CLANG_WARN_RANGE_LOOP_ANALYSIS\=YES export CLANG_WARN_STRICT_PROTOTYPES\=YES export CLANG_WARN_SUSPICIOUS_MOVE\=YES export CLANG_WARN_UNGUARDED_AVAILABILITY\=YES_AGGRESSIVE export CLANG_WARN_UNREACHABLE_CODE\=YES export CLANG_WARN__DUPLICATE_METHOD_MATCH\=YES export CLASS_FILE_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/amplitude-react-native.build/JavaClasses export CLEAN_PRECOMPS\=YES export CLONE_HEADERS\=NO export CODESIGNING_FOLDER_PATH\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products/Debug-iphonesimulator/amplitude-react-native/libamplitude-react-native.a export CODE_SIGNING_ALLOWED\=NO export CODE_SIGNING_REQUIRED\=YES export CODE_SIGN_CONTEXT_CLASS\=XCiPhoneSimulatorCodeSignContext export CODE_SIGN_IDENTITY\=- export CODE_SIGN_INJECT_BASE_ENTITLEMENTS\=YES export COLOR_DIAGNOSTICS\=NO export COMBINE_HIDPI_IMAGES\=NO export COMPILER_INDEX_STORE_ENABLE\=Default export COMPOSITE_SDK_DIRS\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/CompositeSDKs export COMPRESS_PNG_FILES\=YES export CONFIGURATION\=Debug export CONFIGURATION_BUILD_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products/Debug-iphonesimulator/amplitude-react-native export CONFIGURATION_TEMP_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator export COPYING_PRESERVES_HFS_DATA\=NO export COPY_HEADERS_RUN_UNIFDEF\=NO export COPY_PHASE_STRIP\=NO export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS\=YES export CORRESPONDING_DEVICE_PLATFORM_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform export CORRESPONDING_DEVICE_PLATFORM_NAME\=iphoneos export CORRESPONDING_DEVICE_SDK_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.5.sdk export CORRESPONDING_DEVICE_SDK_NAME\=iphoneos15.5 export CP\=/bin/cp export CREATE_INFOPLIST_SECTION_IN_BINARY\=NO export CURRENT_ARCH\=undefined_arch export CURRENT_VARIANT\=normal export DEAD_CODE_STRIPPING\=YES export DEBUGGING_SYMBOLS\=YES export DEBUG_INFORMATION_FORMAT\=dwarf export DEFAULT_COMPILER\=com.apple.compilers.llvm.clang.1_0 export DEFAULT_DEXT_INSTALL_PATH\=/System/Library/DriverExtensions export DEFAULT_KEXT_INSTALL_PATH\=/System/Library/Extensions export DEFINES_MODULE\=NO export DEPLOYMENT_LOCATION\=NO export DEPLOYMENT_POSTPROCESSING\=NO export DEPLOYMENT_TARGET_SETTING_NAME\=IPHONEOS_DEPLOYMENT_TARGET export DEPLOYMENT_TARGET_SUGGESTED_VALUES\=9.0\ 9.1\ 9.2\ 9.3\ 10.0\ 10.1\ 10.2\ 10.3\ 11.0\ 11.1\ 11.2\ 11.3\ 11.4\ 12.0\ 12.1\ 12.2\ 12.3\ 12.4\ 13.0\ 13.1\ 13.2\ 13.3\ 13.4\ 13.5\ 13.6\ 14.0\ 14.1\ 14.2\ 14.3\ 14.4\ 14.5\ 14.6\ 14.7\ 15.0\ 15.1\ 15.2\ 15.3\ 15.4\ 15.5 export DERIVED_FILES_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/amplitude-react-native.build/DerivedSources export DERIVED_FILE_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/amplitude-react-native.build/DerivedSources export DERIVED_SOURCES_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/amplitude-react-native.build/DerivedSources export DEVELOPER_APPLICATIONS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications export DEVELOPER_BIN_DIR\=/Applications/Xcode.app/Contents/Developer/usr/bin export DEVELOPER_DIR\=/Applications/Xcode.app/Contents/Developer export DEVELOPER_FRAMEWORKS_DIR\=/Applications/Xcode.app/Contents/Developer/Library/Frameworks export DEVELOPER_FRAMEWORKS_DIR_QUOTED\=/Applications/Xcode.app/Contents/Developer/Library/Frameworks export DEVELOPER_LIBRARY_DIR\=/Applications/Xcode.app/Contents/Developer/Library export DEVELOPER_SDK_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs export DEVELOPER_TOOLS_DIR\=/Applications/Xcode.app/Contents/Developer/Tools export DEVELOPER_USR_DIR\=/Applications/Xcode.app/Contents/Developer/usr export DEVELOPMENT_LANGUAGE\=en export DONT_GENERATE_INFOPLIST_FILE\=NO export DO_HEADER_SCANNING_IN_JAM\=NO export DSTROOT\=/tmp/Pods.dst export DT_TOOLCHAIN_DIR\=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain export DWARF_DSYM_FILE_NAME\=libamplitude-react-native.a.dSYM export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT\=NO export DWARF_DSYM_FOLDER_PATH\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products/Debug-iphonesimulator/amplitude-react-native export DYNAMIC_LIBRARY_EXTENSION\=dylib export EFFECTIVE_PLATFORM_NAME\=-iphonesimulator export EMBEDDED_CONTENT_CONTAINS_SWIFT\=NO export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE\=NO export ENABLE_APP_SANDBOX\=NO export ENABLE_BITCODE\=NO export ENABLE_DEFAULT_HEADER_SEARCH_PATHS\=YES export ENABLE_DEFAULT_SEARCH_PATHS\=YES export ENABLE_HARDENED_RUNTIME\=NO export ENABLE_HEADER_DEPENDENCIES\=YES export ENABLE_ON_DEMAND_RESOURCES\=NO export ENABLE_PREVIEWS\=NO export ENABLE_STRICT_OBJC_MSGSEND\=YES export ENABLE_TESTABILITY\=YES export ENABLE_TESTING_SEARCH_PATHS\=NO export ENTITLEMENTS_DESTINATION\=__entitlements export ENTITLEMENTS_REQUIRED\=YES export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS\=.DS_Store\ .svn\ .git\ .hg\ CVS export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES\=\*.nib\ \*.lproj\ \*.framework\ \*.gch\ \*.xcode\*\ \*.xcassets\ \(\*\)\ .DS_Store\ CVS\ .svn\ .git\ .hg\ \*.pbproj\ \*.pbxproj export EXECUTABLE_EXTENSION\=a export EXECUTABLE_NAME\=libamplitude-react-native.a export EXECUTABLE_PATH\=libamplitude-react-native.a export EXECUTABLE_PREFIX\=lib export EXECUTABLE_SUFFIX\=.a export FILE_LIST\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/amplitude-react-native.build/Objects/LinkFileList export FIXED_FILES_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/amplitude-react-native.build/FixedFiles export FRAMEWORK_FLAG_PREFIX\=-framework export FRAMEWORK_SEARCH_PATHS\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products/Debug-iphonesimulator/amplitude-react-native\ export FRAMEWORK_VERSION\=A export FULL_PRODUCT_NAME\=libamplitude-react-native.a export GCC3_VERSION\=3.3 export GCC_C_LANGUAGE_STANDARD\=gnu11 export GCC_DYNAMIC_NO_PIC\=NO export GCC_NO_COMMON_BLOCKS\=YES export GCC_OBJC_LEGACY_DISPATCH\=YES export GCC_OPTIMIZATION_LEVEL\=0 export GCC_PFE_FILE_C_DIALECTS\=c\ objective-c\ c++\ objective-c++ export GCC_PREFIX_HEADER\=Target\ Support\ Files/amplitude-react-native/amplitude-react-native-prefix.pch export GCC_PREPROCESSOR_DEFINITIONS\=POD_CONFIGURATION_DEBUG\=1\ DEBUG\=1\ \ COCOAPODS\=1 export GCC_TREAT_WARNINGS_AS_ERRORS\=NO export GCC_VERSION\=com.apple.compilers.llvm.clang.1_0 export GCC_VERSION_IDENTIFIER\=com_apple_compilers_llvm_clang_1_0 export GCC_WARN_64_TO_32_BIT_CONVERSION\=YES export GCC_WARN_ABOUT_RETURN_TYPE\=YES_ERROR export GCC_WARN_UNDECLARED_SELECTOR\=YES export GCC_WARN_UNINITIALIZED_AUTOS\=YES_AGGRESSIVE export GCC_WARN_UNUSED_FUNCTION\=YES export GCC_WARN_UNUSED_VARIABLE\=YES export GENERATED_MODULEMAP_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/GeneratedModuleMaps-iphonesimulator export GENERATE_INFOPLIST_FILE\=NO export GENERATE_MASTER_OBJECT_FILE\=NO export GENERATE_PKGINFO_FILE\=NO export GENERATE_PROFILING_CODE\=NO export GENERATE_TEXT_BASED_STUBS\=NO export GID\=20 export GROUP\=staff export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT\=YES export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES\=YES export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS\=YES export HEADERMAP_INCLUDES_PROJECT_HEADERS\=YES export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES\=YES export HEADERMAP_USES_VFS\=NO export HEADER_SEARCH_PATHS\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products/Debug-iphonesimulator/amplitude-react-native/include\ \ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Private\"\ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Private/amplitude-react-native\"\ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public\"\ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/DoubleConversion\"\ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/RCT-Folly\"\ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/React-Core\"\ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/React-callinvoker\"\ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/React-cxxreact\"\ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/React-jsi\"\ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/React-jsiexecutor\"\ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/React-jsinspector\"\ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/React-perflogger\"\ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/React-runtimeexecutor\"\ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/Yoga\"\ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/glog\" export HIDE_BITCODE_SYMBOLS\=YES export HOME\=/Users/haneojin export ICONV\=/usr/bin/iconv export INFOPLIST_EXPAND_BUILD_SETTINGS\=YES export INFOPLIST_OUTPUT_FORMAT\=binary export INFOPLIST_PREPROCESS\=NO export INLINE_PRIVATE_FRAMEWORKS\=NO export INSTALLHDRS_COPY_PHASE\=NO export INSTALLHDRS_SCRIPT_PHASE\=NO export INSTALL_DIR\=/tmp/Pods.dst/usr/local/lib export INSTALL_GROUP\=staff export INSTALL_MODE_FLAG\=u+w,go-w,a+rX export INSTALL_OWNER\=haneojin export INSTALL_PATH\=/usr/local/lib export INSTALL_ROOT\=/tmp/Pods.dst export IPHONEOS_DEPLOYMENT_TARGET\=10.0 export JAVAC_DEFAULT_FLAGS\=-J-Xms64m\ -J-XX:NewSize\=4M\ -J-Dfile.encoding\=UTF8 export JAVA_APP_STUB\=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub export JAVA_ARCHIVE_CLASSES\=YES export JAVA_ARCHIVE_TYPE\=JAR export JAVA_COMPILER\=/usr/bin/javac export JAVA_FRAMEWORK_RESOURCES_DIRS\=Resources export JAVA_JAR_FLAGS\=cv export JAVA_SOURCE_SUBDIR\=. export JAVA_USE_DEPENDENCIES\=YES export JAVA_ZIP_FLAGS\=-urg export JIKES_DEFAULT_FLAGS\=+E\ +OLDCSO export KEEP_PRIVATE_EXTERNS\=NO export LD_DEPENDENCY_INFO_FILE\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/amplitude-react-native.build/Objects-normal/undefined_arch/amplitude-react-native_dependency_info.dat export LD_GENERATE_MAP_FILE\=NO export LD_MAP_FILE_PATH\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/amplitude-react-native.build/amplitude-react-native-LinkMap-normal-undefined_arch.txt export LD_NO_PIE\=NO export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER\=YES export LEGACY_DEVELOPER_DIR\=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer export LEX\=lex export LIBRARY_DEXT_INSTALL_PATH\=/Library/DriverExtensions export LIBRARY_FLAG_NOSPACE\=YES export LIBRARY_FLAG_PREFIX\=-l export LIBRARY_KEXT_INSTALL_PATH\=/Library/Extensions export LIBRARY_SEARCH_PATHS\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products/Debug-iphonesimulator/amplitude-react-native\ export LINKER_DISPLAYS_MANGLED_NAMES\=NO export LINK_FILE_LIST_normal_arm64\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/amplitude-react-native.build/Objects-normal/arm64/amplitude-react-native.LinkFileList export LINK_WITH_STANDARD_LIBRARIES\=YES export LLVM_TARGET_TRIPLE_OS_VERSION\=ios10.0 export LLVM_TARGET_TRIPLE_SUFFIX\=-simulator export LLVM_TARGET_TRIPLE_VENDOR\=apple export LOCALIZATION_EXPORT_SUPPORTED\=YES export LOCALIZED_STRING_MACRO_NAMES\=NSLocalizedString\ CFCopyLocalizedString export LOCALIZED_STRING_SWIFTUI_SUPPORT\=YES export LOCAL_ADMIN_APPS_DIR\=/Applications/Utilities export LOCAL_APPS_DIR\=/Applications export LOCAL_DEVELOPER_DIR\=/Library/Developer export LOCAL_LIBRARY_DIR\=/Library export LOCROOT\=/Users/haneojin/Desktop/algocare-app/ios/Pods export LOCSYMROOT\=/Users/haneojin/Desktop/algocare-app/ios/Pods export MACH_O_TYPE\=staticlib export MAC_OS_X_PRODUCT_BUILD_VERSION\=21A559 export MAC_OS_X_VERSION_ACTUAL\=120001 export MAC_OS_X_VERSION_MAJOR\=120000 export MAC_OS_X_VERSION_MINOR\=120000 export METAL_LIBRARY_FILE_BASE\=default export METAL_LIBRARY_OUTPUT_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products/Debug-iphonesimulator/amplitude-react-native/ export MODULEMAP_FILE\=Headers/Public/amplitude_react_native/amplitude-react-native.modulemap export MODULE_CACHE_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/ModuleCache.noindex export MTL_ENABLE_DEBUG_INFO\=INCLUDE_SOURCE export MTL_FAST_MATH\=YES export NATIVE_ARCH\=arm64 export NATIVE_ARCH_32_BIT\=arm export NATIVE_ARCH_64_BIT\=arm64 export NATIVE_ARCH_ACTUAL\=arm64 export NO_COMMON\=YES export OBJC_ABI_VERSION\=2 export OBJECT_FILE_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/amplitude-react-native.build/Objects export OBJECT_FILE_DIR_normal\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/amplitude-react-native.build/Objects-normal export OBJROOT\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex export ONLY_ACTIVE_ARCH\=YES export OS\=MACOS export OSAC\=/usr/bin/osacompile export OTHER_CFLAGS\=\ -fmodule-map-file\=\"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/Amplitude/Amplitude.modulemap\"\ -fmodule-map-file\=\"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/React/React-Core.common.modulemap\"\ -fmodule-map-file\=\"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/yoga/Yoga.modulemap\" export OTHER_CPLUSPLUSFLAGS\=\ -fmodule-map-file\=\"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/Amplitude/Amplitude.modulemap\"\ -fmodule-map-file\=\"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/React/React-Core.common.modulemap\"\ -fmodule-map-file\=\"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/yoga/Yoga.modulemap\" export OTHER_SWIFT_FLAGS\=\ -D\ COCOAPODS\ -Xcc\ -fmodule-map-file\=\"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/Amplitude/Amplitude.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/React/React-Core.common.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/yoga/Yoga.modulemap\"\ -import-underlying-module\ -Xcc\ -fmodule-map-file\=\"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/amplitude_react_native/amplitude-react-native.modulemap\" export PACKAGE_TYPE\=com.apple.package-type.static-library export PASCAL_STRINGS\=YES export PATH\=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/var/folders/p0/fs8881996y36wkcqtj2lwtnr0000gn/T/yarn--1655126918481-0.5817488144099476:/Users/haneojin/Desktop/algocare-app/node_modules/.bin:/Users/haneojin/.config/yarn/link/node_modules/.bin:/Users/haneojin/.nvm/versions/node/v16.13.0/libexec/lib/node_modules/npm/bin/node-gyp-bin:/Users/haneojin/.nvm/versions/node/v16.13.0/lib/node_modules/npm/bin/node-gyp-bin:/Users/haneojin/.nvm/versions/node/v16.13.0/bin/node_modules/npm/bin/node-gyp-bin:/Users/haneojin/.nvm/versions/node/v16.13.0/bin:/opt/homebrew/bin:/Library/Frameworks/Python.framework/Versions/3.10/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Apple/usr/bin:/Users/haneojin/Library/Android/sdk/emulator:/Users/haneojin/Library/Android/sdk/tools:/Users/haneojin/Library/Android/sdk/tools/bin:/Users/haneojin/Library/Android/sdk/platform-tools export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES\=/usr/include\ /usr/local/include\ /System/Library/Frameworks\ /System/Library/PrivateFrameworks\ /Applications/Xcode.app/Contents/Developer/Headers\ /Applications/Xcode.app/Contents/Developer/SDKs\ /Applications/Xcode.app/Contents/Developer/Platforms export PER_ARCH_OBJECT_FILE_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/amplitude-react-native.build/Objects-normal/undefined_arch export PER_VARIANT_OBJECT_FILE_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/amplitude-react-native.build/Objects-normal export PKGINFO_FILE_PATH\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/amplitude-react-native.build/PkgInfo export PLATFORM_DEVELOPER_APPLICATIONS_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications export PLATFORM_DEVELOPER_BIN_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin export PLATFORM_DEVELOPER_LIBRARY_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library export PLATFORM_DEVELOPER_SDK_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs export PLATFORM_DEVELOPER_TOOLS_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools export PLATFORM_DEVELOPER_USR_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr export PLATFORM_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform export PLATFORM_DISPLAY_NAME\=iOS\ Simulator export PLATFORM_FAMILY_NAME\=iOS export PLATFORM_NAME\=iphonesimulator export PLATFORM_PREFERRED_ARCH\=x86_64 export PLATFORM_PRODUCT_BUILD_VERSION\=19F64 export PLIST_FILE_OUTPUT_FORMAT\=binary export PODS_BUILD_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products export PODS_CONFIGURATION_BUILD_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products/Debug-iphonesimulator export PODS_ROOT\=/Users/haneojin/Desktop/algocare-app/ios/Pods export PODS_TARGET_SRCROOT\=/Users/haneojin/Desktop/algocare-app/ios/Pods/../../node_modules/@amplitude/react-native export PODS_XCFRAMEWORKS_BUILD_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products/Debug-iphonesimulator/XCFrameworkIntermediates export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR\=YES export PRECOMP_DESTINATION_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/amplitude-react-native.build/PrefixHeaders export PRESERVE_DEAD_CODE_INITS_AND_TERMS\=NO export PRODUCT_BUNDLE_IDENTIFIER\=org.cocoapods.amplitude-react-native export PRODUCT_MODULE_NAME\=amplitude_react_native export PRODUCT_NAME\=amplitude-react-native export PRODUCT_SETTINGS_PATH\= export PRODUCT_TYPE\=com.apple.product-type.library.static export PROFILING_CODE\=NO export PROJECT\=Pods export PROJECT_DERIVED_FILE_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/DerivedSources export PROJECT_DIR\=/Users/haneojin/Desktop/algocare-app/ios/Pods export PROJECT_FILE_PATH\=/Users/haneojin/Desktop/algocare-app/ios/Pods/Pods.xcodeproj export PROJECT_NAME\=Pods export PROJECT_TEMP_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build export PROJECT_TEMP_ROOT\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS\=YES export REMOVE_CVS_FROM_RESOURCES\=YES export REMOVE_GIT_FROM_RESOURCES\=YES export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES\=YES export REMOVE_HG_FROM_RESOURCES\=YES export REMOVE_SVN_FROM_RESOURCES\=YES export REZ_COLLECTOR_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/amplitude-react-native.build/ResourceManagerResources export REZ_EXECUTABLE\=YES export REZ_OBJECTS_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/amplitude-react-native.build/ResourceManagerResources/Objects export REZ_SEARCH_PATHS\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products/Debug-iphonesimulator/amplitude-react-native\ export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES\=NO export SCRIPT_INPUT_FILE_0\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/amplitude-react-native.build/DerivedSources/amplitude_react_native-Swift.h export SCRIPT_INPUT_FILE_1\=/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/amplitude_react_native/amplitude-react-native.modulemap export SCRIPT_INPUT_FILE_2\=/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/amplitude_react_native/amplitude-react-native-umbrella.h export SCRIPT_INPUT_FILE_COUNT\=3 export SCRIPT_INPUT_FILE_LIST_COUNT\=0 export SCRIPT_OUTPUT_FILE_0\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products/Debug-iphonesimulator/amplitude-react-native/amplitude_react_native.modulemap export SCRIPT_OUTPUT_FILE_1\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products/Debug-iphonesimulator/amplitude-react-native/amplitude-react-native-umbrella.h export SCRIPT_OUTPUT_FILE_2\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products/Debug-iphonesimulator/amplitude-react-native/Swift\ Compatibility\ Header/amplitude_react_native-Swift.h export SCRIPT_OUTPUT_FILE_COUNT\=3 export SCRIPT_OUTPUT_FILE_LIST_COUNT\=0 export SDKROOT\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.5.sdk export SDK_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.5.sdk export SDK_DIR_iphonesimulator\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.5.sdk export SDK_DIR_iphonesimulator15_5\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.5.sdk export SDK_NAME\=iphonesimulator15.5 export SDK_NAMES\=iphonesimulator15.5 export SDK_PRODUCT_BUILD_VERSION\=19F64 export SDK_VERSION\=15.5 export SDK_VERSION_ACTUAL\=150500 export SDK_VERSION_MAJOR\=150000 export SDK_VERSION_MINOR\=150500 export SED\=/usr/bin/sed export SEPARATE_STRIP\=NO export SEPARATE_SYMBOL_EDIT\=NO export SET_DIR_MODE_OWNER_GROUP\=YES export SET_FILE_MODE_OWNER_GROUP\=NO export SHALLOW_BUNDLE\=NO export SHARED_DERIVED_FILE_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products/Debug-iphonesimulator/amplitude-react-native/DerivedSources export SHARED_PRECOMPS_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/PrecompiledHeaders export SKIP_INSTALL\=YES export SOURCE_ROOT\=/Users/haneojin/Desktop/algocare-app/ios/Pods export SRCROOT\=/Users/haneojin/Desktop/algocare-app/ios/Pods export STRINGSDATA_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/amplitude-react-native.build/Objects-normal/undefined_arch export STRINGSDATA_ROOT\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/amplitude-react-native.build export STRINGS_FILE_INFOPLIST_RENAME\=YES export STRINGS_FILE_OUTPUT_ENCODING\=binary export STRIP_BITCODE_FROM_COPIED_FILES\=NO export STRIP_INSTALLED_PRODUCT\=NO export STRIP_STYLE\=debugging export STRIP_SWIFT_SYMBOLS\=YES export SUPPORTED_DEVICE_FAMILIES\=1,2 export SUPPORTED_PLATFORMS\=iphoneos\ iphonesimulator export SUPPORTS_TEXT_BASED_API\=NO export SWIFT_ACTIVE_COMPILATION_CONDITIONS\=DEBUG\ export SWIFT_EMIT_LOC_STRINGS\=NO export SWIFT_OPTIMIZATION_LEVEL\=-Onone export SWIFT_PLATFORM_TARGET_PREFIX\=ios export SWIFT_RESPONSE_FILE_PATH_normal_arm64\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/amplitude-react-native.build/Objects-normal/arm64/amplitude-react-native.SwiftFileList export SWIFT_VERSION\=5.0 export SYMROOT\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products export SYSTEM_ADMIN_APPS_DIR\=/Applications/Utilities export SYSTEM_APPS_DIR\=/Applications export SYSTEM_CORE_SERVICES_DIR\=/System/Library/CoreServices export SYSTEM_DEMOS_DIR\=/Applications/Extras export SYSTEM_DEVELOPER_APPS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications export SYSTEM_DEVELOPER_BIN_DIR\=/Applications/Xcode.app/Contents/Developer/usr/bin export SYSTEM_DEVELOPER_DEMOS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built\ Examples export SYSTEM_DEVELOPER_DIR\=/Applications/Xcode.app/Contents/Developer export SYSTEM_DEVELOPER_DOC_DIR\=/Applications/Xcode.app/Contents/Developer/ADC\ Reference\ Library export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications/Graphics\ Tools export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications/Java\ Tools export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications/Performance\ Tools export SYSTEM_DEVELOPER_RELEASENOTES_DIR\=/Applications/Xcode.app/Contents/Developer/ADC\ Reference\ Library/releasenotes export SYSTEM_DEVELOPER_TOOLS\=/Applications/Xcode.app/Contents/Developer/Tools export SYSTEM_DEVELOPER_TOOLS_DOC_DIR\=/Applications/Xcode.app/Contents/Developer/ADC\ Reference\ Library/documentation/DeveloperTools export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR\=/Applications/Xcode.app/Contents/Developer/ADC\ Reference\ Library/releasenotes/DeveloperTools export SYSTEM_DEVELOPER_USR_DIR\=/Applications/Xcode.app/Contents/Developer/usr export SYSTEM_DEVELOPER_UTILITIES_DIR\=/Applications/Xcode.app/Contents/Developer/Applications/Utilities export SYSTEM_DEXT_INSTALL_PATH\=/System/Library/DriverExtensions export SYSTEM_DOCUMENTATION_DIR\=/Library/Documentation export SYSTEM_KEXT_INSTALL_PATH\=/System/Library/Extensions export SYSTEM_LIBRARY_DIR\=/System/Library export TAPI_ENABLE_PROJECT_HEADERS\=NO export TAPI_VERIFY_MODE\=ErrorsOnly export TARGETED_DEVICE_FAMILY\=1,2 export TARGETNAME\=amplitude-react-native export TARGET_BUILD_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products/Debug-iphonesimulator/amplitude-react-native export TARGET_DEVICE_IDENTIFIER\=D863C036-6FB1-4952-91DE-495F10A8541F export TARGET_DEVICE_MODEL\=iPhone13,2 export TARGET_DEVICE_OS_VERSION\=14.5 export TARGET_DEVICE_PLATFORM_NAME\=iphonesimulator export TARGET_NAME\=amplitude-react-native export TARGET_TEMP_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/amplitude-react-native.build export TEMP_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/amplitude-react-native.build export TEMP_FILES_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/amplitude-react-native.build export TEMP_FILE_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/amplitude-react-native.build export TEMP_ROOT\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex export TEST_FRAMEWORK_SEARCH_PATHS\=\ /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks\ /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.5.sdk/Developer/Library/Frameworks export TEST_LIBRARY_SEARCH_PATHS\=\ /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/lib export TOOLCHAINS\=com.apple.dt.toolchain.XcodeDefault export TOOLCHAIN_DIR\=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain export TREAT_MISSING_BASELINES_AS_TEST_FAILURES\=NO export UID\=501 export UNSTRIPPED_PRODUCT\=NO export USER\=haneojin export USER_APPS_DIR\=/Users/haneojin/Applications export USER_LIBRARY_DIR\=/Users/haneojin/Library export USE_DYNAMIC_NO_PIC\=YES export USE_HEADERMAP\=YES export USE_HEADER_SYMLINKS\=NO export USE_LLVM_TARGET_TRIPLES\=YES export USE_LLVM_TARGET_TRIPLES_FOR_CLANG\=YES export USE_LLVM_TARGET_TRIPLES_FOR_LD\=YES export USE_LLVM_TARGET_TRIPLES_FOR_TAPI\=YES export USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES\=YES export VALIDATE_DEVELOPMENT_ASSET_PATHS\=YES_ERROR export VALIDATE_PRODUCT\=NO export VALIDATE_WORKSPACE\=YES_ERROR export VALID_ARCHS\=arm64\ arm64e\ i386\ x86_64 export VERBOSE_PBXCP\=NO export VERSION_INFO_BUILDER\=haneojin export VERSION_INFO_FILE\=amplitude-react-native_vers.c export VERSION_INFO_STRING\=\"@\(\#\)PROGRAM:amplitude-react-native\ \ PROJECT:Pods-\" export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES\=NO export XCODE_APP_SUPPORT_DIR\=/Applications/Xcode.app/Contents/Developer/Library/Xcode export XCODE_PRODUCT_BUILD_VERSION\=13F100 export XCODE_VERSION_ACTUAL\=1341 export XCODE_VERSION_MAJOR\=1300 export XCODE_VERSION_MINOR\=1340 export XPCSERVICES_FOLDER_PATH\=/XPCServices export YACC\=yacc export arch\=undefined_arch export variant\=normal /bin/sh -c /Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/amplitude-react-native.build/Script-0CBD2F262A87D9E39127074D01FD5A92.sh Libtool /Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products/Debug-iphonesimulator/FirebaseMessaging/libFirebaseMessaging.a normal (in target 'FirebaseMessaging' from project 'Pods') cd /Users/haneojin/Desktop/algocare-app/ios/Pods export IPHONEOS_DEPLOYMENT_TARGET\=10.0 /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/libtool -static -arch_only arm64 -D -syslibroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.5.sdk -L/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products/Debug-iphonesimulator/FirebaseMessaging -filelist /Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FirebaseMessaging.build/Objects-normal/arm64/FirebaseMessaging.LinkFileList -dependency_info /Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FirebaseMessaging.build/Objects-normal/arm64/FirebaseMessaging_libtool_dependency_info.dat -o /Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products/Debug-iphonesimulator/FirebaseMessaging/libFirebaseMessaging.a PhaseScriptExecution [CP-User]\ Generate\ Specs /Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FBReactNativeSpec.build/Script-5839FF1C11D94C5EDB077E8191180104.sh (in target 'FBReactNativeSpec' from project 'Pods') cd /Users/haneojin/Desktop/algocare-app/ios/Pods export ACTION\=build export AD_HOC_CODE_SIGNING_ALLOWED\=YES export ALLOW_TARGET_PLATFORM_SPECIALIZATION\=NO export ALTERNATE_GROUP\=staff export ALTERNATE_MODE\=u+w,go-w,a+rX export ALTERNATE_OWNER\=haneojin export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES\=NO export ALWAYS_SEARCH_USER_PATHS\=NO export ALWAYS_USE_SEPARATE_HEADERMAPS\=NO export APPLE_INTERNAL_DEVELOPER_DIR\=/AppleInternal/Developer export APPLE_INTERNAL_DIR\=/AppleInternal export APPLE_INTERNAL_DOCUMENTATION_DIR\=/AppleInternal/Documentation export APPLE_INTERNAL_LIBRARY_DIR\=/AppleInternal/Library export APPLE_INTERNAL_TOOLS\=/AppleInternal/Developer/Tools export APPLICATION_EXTENSION_API_ONLY\=NO export APPLY_RULES_IN_COPY_FILES\=NO export APPLY_RULES_IN_COPY_HEADERS\=NO export ARCHS\=arm64 export ARCHS_STANDARD\=arm64\ x86_64\ i386 export ARCHS_STANDARD_32_64_BIT\=arm64\ i386\ x86_64 export ARCHS_STANDARD_32_BIT\=i386 export ARCHS_STANDARD_64_BIT\=arm64\ x86_64 export ARCHS_STANDARD_INCLUDING_64_BIT\=arm64\ x86_64\ i386 export ARCHS_UNIVERSAL_IPHONE_OS\=arm64\ i386\ x86_64 export ASSETCATALOG_FILTER_FOR_DEVICE_MODEL\=iPhone13,2 export ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION\=14.5 export AVAILABLE_PLATFORMS\=appletvos\ appletvsimulator\ driverkit\ iphoneos\ iphonesimulator\ macosx\ watchos\ watchsimulator export BITCODE_GENERATION_MODE\=marker export BUILD_ACTIVE_RESOURCES_ONLY\=YES export BUILD_COMPONENTS\=headers\ build export BUILD_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products export BUILD_LIBRARY_FOR_DISTRIBUTION\=NO export BUILD_ROOT\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products export BUILD_STYLE\= export BUILD_VARIANTS\=normal export BUILT_PRODUCTS_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products/Debug-iphonesimulator/FBReactNativeSpec export BUNDLE_CONTENTS_FOLDER_PATH_deep\=Contents/ export BUNDLE_EXECUTABLE_FOLDER_NAME_deep\=MacOS export BUNDLE_FORMAT\=shallow export BUNDLE_FRAMEWORKS_FOLDER_PATH\=Frameworks export BUNDLE_PLUGINS_FOLDER_PATH\=PlugIns export BUNDLE_PRIVATE_HEADERS_FOLDER_PATH\=PrivateHeaders export BUNDLE_PUBLIC_HEADERS_FOLDER_PATH\=Headers export CACHE_ROOT\=/var/folders/p0/fs8881996y36wkcqtj2lwtnr0000gn/C/com.apple.DeveloperTools/13.4.1-13F100/Xcode export CCHROOT\=/var/folders/p0/fs8881996y36wkcqtj2lwtnr0000gn/C/com.apple.DeveloperTools/13.4.1-13F100/Xcode export CHMOD\=/bin/chmod export CHOWN\=/usr/sbin/chown export CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED\=YES export CLANG_ANALYZER_NONNULL\=YES export CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION\=YES_AGGRESSIVE export CLANG_CXX_LANGUAGE_STANDARD\=c++14 export CLANG_CXX_LIBRARY\=libc++ export CLANG_ENABLE_MODULES\=YES export CLANG_ENABLE_MODULE_DEBUGGING\=NO export CLANG_ENABLE_OBJC_ARC\=YES export CLANG_ENABLE_OBJC_WEAK\=NO export CLANG_MODULES_BUILD_SESSION_FILE\=/Users/haneojin/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING\=YES export CLANG_WARN_BOOL_CONVERSION\=YES export CLANG_WARN_COMMA\=YES export CLANG_WARN_CONSTANT_CONVERSION\=YES export CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS\=YES export CLANG_WARN_DIRECT_OBJC_ISA_USAGE\=YES_ERROR export CLANG_WARN_DOCUMENTATION_COMMENTS\=YES export CLANG_WARN_EMPTY_BODY\=YES export CLANG_WARN_ENUM_CONVERSION\=YES export CLANG_WARN_INFINITE_RECURSION\=YES export CLANG_WARN_INT_CONVERSION\=YES export CLANG_WARN_NON_LITERAL_NULL_CONVERSION\=YES export CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF\=YES export CLANG_WARN_OBJC_LITERAL_CONVERSION\=YES export CLANG_WARN_OBJC_ROOT_CLASS\=YES_ERROR export CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER\=NO export CLANG_WARN_RANGE_LOOP_ANALYSIS\=YES export CLANG_WARN_STRICT_PROTOTYPES\=YES export CLANG_WARN_SUSPICIOUS_MOVE\=YES export CLANG_WARN_UNGUARDED_AVAILABILITY\=YES_AGGRESSIVE export CLANG_WARN_UNREACHABLE_CODE\=YES export CLANG_WARN__DUPLICATE_METHOD_MATCH\=YES export CLASS_FILE_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FBReactNativeSpec.build/JavaClasses export CLEAN_PRECOMPS\=YES export CLONE_HEADERS\=NO export CODESIGNING_FOLDER_PATH\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products/Debug-iphonesimulator/FBReactNativeSpec/libFBReactNativeSpec.a export CODE_SIGNING_ALLOWED\=NO export CODE_SIGNING_REQUIRED\=YES export CODE_SIGN_CONTEXT_CLASS\=XCiPhoneSimulatorCodeSignContext export CODE_SIGN_IDENTITY\=- export CODE_SIGN_INJECT_BASE_ENTITLEMENTS\=YES export COLOR_DIAGNOSTICS\=NO export COMBINE_HIDPI_IMAGES\=NO export COMPILER_INDEX_STORE_ENABLE\=Default export COMPOSITE_SDK_DIRS\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/CompositeSDKs export COMPRESS_PNG_FILES\=YES export CONFIGURATION\=Debug export CONFIGURATION_BUILD_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products/Debug-iphonesimulator/FBReactNativeSpec export CONFIGURATION_TEMP_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator export COPYING_PRESERVES_HFS_DATA\=NO export COPY_HEADERS_RUN_UNIFDEF\=NO export COPY_PHASE_STRIP\=NO export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS\=YES export CORRESPONDING_DEVICE_PLATFORM_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform export CORRESPONDING_DEVICE_PLATFORM_NAME\=iphoneos export CORRESPONDING_DEVICE_SDK_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS15.5.sdk export CORRESPONDING_DEVICE_SDK_NAME\=iphoneos15.5 export CP\=/bin/cp export CREATE_INFOPLIST_SECTION_IN_BINARY\=NO export CURRENT_ARCH\=undefined_arch export CURRENT_VARIANT\=normal export DEAD_CODE_STRIPPING\=YES export DEBUGGING_SYMBOLS\=YES export DEBUG_INFORMATION_FORMAT\=dwarf export DEFAULT_COMPILER\=com.apple.compilers.llvm.clang.1_0 export DEFAULT_DEXT_INSTALL_PATH\=/System/Library/DriverExtensions export DEFAULT_KEXT_INSTALL_PATH\=/System/Library/Extensions export DEFINES_MODULE\=NO export DEPLOYMENT_LOCATION\=NO export DEPLOYMENT_POSTPROCESSING\=NO export DEPLOYMENT_TARGET_SETTING_NAME\=IPHONEOS_DEPLOYMENT_TARGET export DEPLOYMENT_TARGET_SUGGESTED_VALUES\=9.0\ 9.1\ 9.2\ 9.3\ 10.0\ 10.1\ 10.2\ 10.3\ 11.0\ 11.1\ 11.2\ 11.3\ 11.4\ 12.0\ 12.1\ 12.2\ 12.3\ 12.4\ 13.0\ 13.1\ 13.2\ 13.3\ 13.4\ 13.5\ 13.6\ 14.0\ 14.1\ 14.2\ 14.3\ 14.4\ 14.5\ 14.6\ 14.7\ 15.0\ 15.1\ 15.2\ 15.3\ 15.4\ 15.5 export DERIVED_FILES_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FBReactNativeSpec.build/DerivedSources export DERIVED_FILE_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FBReactNativeSpec.build/DerivedSources export DERIVED_SOURCES_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FBReactNativeSpec.build/DerivedSources export DEVELOPER_APPLICATIONS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications export DEVELOPER_BIN_DIR\=/Applications/Xcode.app/Contents/Developer/usr/bin export DEVELOPER_DIR\=/Applications/Xcode.app/Contents/Developer export DEVELOPER_FRAMEWORKS_DIR\=/Applications/Xcode.app/Contents/Developer/Library/Frameworks export DEVELOPER_FRAMEWORKS_DIR_QUOTED\=/Applications/Xcode.app/Contents/Developer/Library/Frameworks export DEVELOPER_LIBRARY_DIR\=/Applications/Xcode.app/Contents/Developer/Library export DEVELOPER_SDK_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs export DEVELOPER_TOOLS_DIR\=/Applications/Xcode.app/Contents/Developer/Tools export DEVELOPER_USR_DIR\=/Applications/Xcode.app/Contents/Developer/usr export DEVELOPMENT_LANGUAGE\=en export DONT_GENERATE_INFOPLIST_FILE\=NO export DO_HEADER_SCANNING_IN_JAM\=NO export DSTROOT\=/tmp/Pods.dst export DT_TOOLCHAIN_DIR\=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain export DWARF_DSYM_FILE_NAME\=libFBReactNativeSpec.a.dSYM export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT\=NO export DWARF_DSYM_FOLDER_PATH\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products/Debug-iphonesimulator/FBReactNativeSpec export DYNAMIC_LIBRARY_EXTENSION\=dylib export EFFECTIVE_PLATFORM_NAME\=-iphonesimulator export EMBEDDED_CONTENT_CONTAINS_SWIFT\=NO export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE\=NO export ENABLE_APP_SANDBOX\=NO export ENABLE_BITCODE\=NO export ENABLE_DEFAULT_HEADER_SEARCH_PATHS\=YES export ENABLE_DEFAULT_SEARCH_PATHS\=YES export ENABLE_HARDENED_RUNTIME\=NO export ENABLE_HEADER_DEPENDENCIES\=YES export ENABLE_ON_DEMAND_RESOURCES\=NO export ENABLE_PREVIEWS\=NO export ENABLE_STRICT_OBJC_MSGSEND\=YES export ENABLE_TESTABILITY\=YES export ENABLE_TESTING_SEARCH_PATHS\=NO export ENTITLEMENTS_DESTINATION\=__entitlements export ENTITLEMENTS_REQUIRED\=YES export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS\=.DS_Store\ .svn\ .git\ .hg\ CVS export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES\=\*.nib\ \*.lproj\ \*.framework\ \*.gch\ \*.xcode\*\ \*.xcassets\ \(\*\)\ .DS_Store\ CVS\ .svn\ .git\ .hg\ \*.pbproj\ \*.pbxproj export EXECUTABLE_EXTENSION\=a export EXECUTABLE_NAME\=libFBReactNativeSpec.a export EXECUTABLE_PATH\=libFBReactNativeSpec.a export EXECUTABLE_PREFIX\=lib export EXECUTABLE_SUFFIX\=.a export FILE_LIST\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FBReactNativeSpec.build/Objects/LinkFileList export FIXED_FILES_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FBReactNativeSpec.build/FixedFiles export FRAMEWORK_FLAG_PREFIX\=-framework export FRAMEWORK_SEARCH_PATHS\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products/Debug-iphonesimulator/FBReactNativeSpec\ export FRAMEWORK_VERSION\=A export FULL_PRODUCT_NAME\=libFBReactNativeSpec.a export GCC3_VERSION\=3.3 export GCC_C_LANGUAGE_STANDARD\=gnu11 export GCC_DYNAMIC_NO_PIC\=NO export GCC_NO_COMMON_BLOCKS\=YES export GCC_OBJC_LEGACY_DISPATCH\=YES export GCC_OPTIMIZATION_LEVEL\=0 export GCC_PFE_FILE_C_DIALECTS\=c\ objective-c\ c++\ objective-c++ export GCC_PREFIX_HEADER\=Target\ Support\ Files/FBReactNativeSpec/FBReactNativeSpec-prefix.pch export GCC_PREPROCESSOR_DEFINITIONS\=POD_CONFIGURATION_DEBUG\=1\ DEBUG\=1\ \ COCOAPODS\=1 export GCC_TREAT_WARNINGS_AS_ERRORS\=NO export GCC_VERSION\=com.apple.compilers.llvm.clang.1_0 export GCC_VERSION_IDENTIFIER\=com_apple_compilers_llvm_clang_1_0 export GCC_WARN_64_TO_32_BIT_CONVERSION\=YES export GCC_WARN_ABOUT_RETURN_TYPE\=YES_ERROR export GCC_WARN_UNDECLARED_SELECTOR\=YES export GCC_WARN_UNINITIALIZED_AUTOS\=YES_AGGRESSIVE export GCC_WARN_UNUSED_FUNCTION\=YES export GCC_WARN_UNUSED_VARIABLE\=YES export GENERATED_MODULEMAP_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/GeneratedModuleMaps-iphonesimulator export GENERATE_INFOPLIST_FILE\=NO export GENERATE_MASTER_OBJECT_FILE\=NO export GENERATE_PKGINFO_FILE\=NO export GENERATE_PROFILING_CODE\=NO export GENERATE_TEXT_BASED_STUBS\=NO export GID\=20 export GROUP\=staff export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT\=YES export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES\=YES export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS\=YES export HEADERMAP_INCLUDES_PROJECT_HEADERS\=YES export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES\=YES export HEADERMAP_USES_VFS\=NO export HEADER_SEARCH_PATHS\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products/Debug-iphonesimulator/FBReactNativeSpec/include\ \ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Private\"\ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Private/FBReactNativeSpec\"\ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public\"\ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/DoubleConversion\"\ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/FBLazyVector\"\ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/FBReactNativeSpec\"\ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/RCT-Folly\"\ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/RCTRequired\"\ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/RCTTypeSafety\"\ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/React-Core\"\ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/React-callinvoker\"\ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/React-cxxreact\"\ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/React-jsi\"\ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/React-jsiexecutor\"\ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/React-jsinspector\"\ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/React-perflogger\"\ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/React-runtimeexecutor\"\ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/ReactCommon\"\ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/Yoga\"\ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/glog\"\ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/../../node_modules/react-native/React/FBReactNativeSpec/React/FBReactNativeSpec\"\ \"/Users/haneojin/Desktop/algocare-app/ios/Pods/RCT-Folly\" export HIDE_BITCODE_SYMBOLS\=YES export HOME\=/Users/haneojin export ICONV\=/usr/bin/iconv export INFOPLIST_EXPAND_BUILD_SETTINGS\=YES export INFOPLIST_OUTPUT_FORMAT\=binary export INFOPLIST_PREPROCESS\=NO export INLINE_PRIVATE_FRAMEWORKS\=NO export INSTALLHDRS_COPY_PHASE\=NO export INSTALLHDRS_SCRIPT_PHASE\=NO export INSTALL_DIR\=/tmp/Pods.dst/usr/local/lib export INSTALL_GROUP\=staff export INSTALL_MODE_FLAG\=u+w,go-w,a+rX export INSTALL_OWNER\=haneojin export INSTALL_PATH\=/usr/local/lib export INSTALL_ROOT\=/tmp/Pods.dst export IPHONEOS_DEPLOYMENT_TARGET\=10.0 export JAVAC_DEFAULT_FLAGS\=-J-Xms64m\ -J-XX:NewSize\=4M\ -J-Dfile.encoding\=UTF8 export JAVA_APP_STUB\=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub export JAVA_ARCHIVE_CLASSES\=YES export JAVA_ARCHIVE_TYPE\=JAR export JAVA_COMPILER\=/usr/bin/javac export JAVA_FRAMEWORK_RESOURCES_DIRS\=Resources export JAVA_JAR_FLAGS\=cv export JAVA_SOURCE_SUBDIR\=. export JAVA_USE_DEPENDENCIES\=YES export JAVA_ZIP_FLAGS\=-urg export JIKES_DEFAULT_FLAGS\=+E\ +OLDCSO export KEEP_PRIVATE_EXTERNS\=NO export LD_DEPENDENCY_INFO_FILE\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FBReactNativeSpec.build/Objects-normal/undefined_arch/FBReactNativeSpec_dependency_info.dat export LD_GENERATE_MAP_FILE\=NO export LD_MAP_FILE_PATH\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FBReactNativeSpec.build/FBReactNativeSpec-LinkMap-normal-undefined_arch.txt export LD_NO_PIE\=NO export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER\=YES export LEGACY_DEVELOPER_DIR\=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer export LEX\=lex export LIBRARY_DEXT_INSTALL_PATH\=/Library/DriverExtensions export LIBRARY_FLAG_NOSPACE\=YES export LIBRARY_FLAG_PREFIX\=-l export LIBRARY_KEXT_INSTALL_PATH\=/Library/Extensions export LIBRARY_SEARCH_PATHS\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products/Debug-iphonesimulator/FBReactNativeSpec\ export LINKER_DISPLAYS_MANGLED_NAMES\=NO export LINK_FILE_LIST_normal_arm64\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FBReactNativeSpec.build/Objects-normal/arm64/FBReactNativeSpec.LinkFileList export LINK_WITH_STANDARD_LIBRARIES\=YES export LLVM_TARGET_TRIPLE_OS_VERSION\=ios10.0 export LLVM_TARGET_TRIPLE_SUFFIX\=-simulator export LLVM_TARGET_TRIPLE_VENDOR\=apple export LOCALIZATION_EXPORT_SUPPORTED\=YES export LOCALIZED_STRING_MACRO_NAMES\=NSLocalizedString\ CFCopyLocalizedString export LOCALIZED_STRING_SWIFTUI_SUPPORT\=YES export LOCAL_ADMIN_APPS_DIR\=/Applications/Utilities export LOCAL_APPS_DIR\=/Applications export LOCAL_DEVELOPER_DIR\=/Library/Developer export LOCAL_LIBRARY_DIR\=/Library export LOCROOT\=/Users/haneojin/Desktop/algocare-app/ios/Pods export LOCSYMROOT\=/Users/haneojin/Desktop/algocare-app/ios/Pods export MACH_O_TYPE\=staticlib export MAC_OS_X_PRODUCT_BUILD_VERSION\=21A559 export MAC_OS_X_VERSION_ACTUAL\=120001 export MAC_OS_X_VERSION_MAJOR\=120000 export MAC_OS_X_VERSION_MINOR\=120000 export METAL_LIBRARY_FILE_BASE\=default export METAL_LIBRARY_OUTPUT_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products/Debug-iphonesimulator/FBReactNativeSpec/ export MODULE_CACHE_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/ModuleCache.noindex export MTL_ENABLE_DEBUG_INFO\=INCLUDE_SOURCE export MTL_FAST_MATH\=YES export NATIVE_ARCH\=arm64 export NATIVE_ARCH_32_BIT\=arm export NATIVE_ARCH_64_BIT\=arm64 export NATIVE_ARCH_ACTUAL\=arm64 export NO_COMMON\=YES export OBJC_ABI_VERSION\=2 export OBJECT_FILE_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FBReactNativeSpec.build/Objects export OBJECT_FILE_DIR_normal\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FBReactNativeSpec.build/Objects-normal export OBJROOT\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex export ONLY_ACTIVE_ARCH\=YES export OS\=MACOS export OSAC\=/usr/bin/osacompile export OTHER_CFLAGS\=\ -fmodule-map-file\=\"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/React/React-Core.common.modulemap\"\ -fmodule-map-file\=\"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/yoga/Yoga.modulemap\" export OTHER_CPLUSPLUSFLAGS\=\ -fmodule-map-file\=\"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/React/React-Core.common.modulemap\"\ -fmodule-map-file\=\"/Users/haneojin/Desktop/algocare-app/ios/Pods/Headers/Public/yoga/Yoga.modulemap\" export PACKAGE_TYPE\=com.apple.package-type.static-library export PASCAL_STRINGS\=YES export PATH\=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/var/folders/p0/fs8881996y36wkcqtj2lwtnr0000gn/T/yarn--1655126918481-0.5817488144099476:/Users/haneojin/Desktop/algocare-app/node_modules/.bin:/Users/haneojin/.config/yarn/link/node_modules/.bin:/Users/haneojin/.nvm/versions/node/v16.13.0/libexec/lib/node_modules/npm/bin/node-gyp-bin:/Users/haneojin/.nvm/versions/node/v16.13.0/lib/node_modules/npm/bin/node-gyp-bin:/Users/haneojin/.nvm/versions/node/v16.13.0/bin/node_modules/npm/bin/node-gyp-bin:/Users/haneojin/.nvm/versions/node/v16.13.0/bin:/opt/homebrew/bin:/Library/Frameworks/Python.framework/Versions/3.10/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Library/Apple/usr/bin:/Users/haneojin/Library/Android/sdk/emulator:/Users/haneojin/Library/Android/sdk/tools:/Users/haneojin/Library/Android/sdk/tools/bin:/Users/haneojin/Library/Android/sdk/platform-tools export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES\=/usr/include\ /usr/local/include\ /System/Library/Frameworks\ /System/Library/PrivateFrameworks\ /Applications/Xcode.app/Contents/Developer/Headers\ /Applications/Xcode.app/Contents/Developer/SDKs\ /Applications/Xcode.app/Contents/Developer/Platforms export PER_ARCH_OBJECT_FILE_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FBReactNativeSpec.build/Objects-normal/undefined_arch export PER_VARIANT_OBJECT_FILE_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FBReactNativeSpec.build/Objects-normal export PKGINFO_FILE_PATH\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FBReactNativeSpec.build/PkgInfo export PLATFORM_DEVELOPER_APPLICATIONS_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications export PLATFORM_DEVELOPER_BIN_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin export PLATFORM_DEVELOPER_LIBRARY_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library export PLATFORM_DEVELOPER_SDK_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs export PLATFORM_DEVELOPER_TOOLS_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools export PLATFORM_DEVELOPER_USR_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr export PLATFORM_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform export PLATFORM_DISPLAY_NAME\=iOS\ Simulator export PLATFORM_FAMILY_NAME\=iOS export PLATFORM_NAME\=iphonesimulator export PLATFORM_PREFERRED_ARCH\=x86_64 export PLATFORM_PRODUCT_BUILD_VERSION\=19F64 export PLIST_FILE_OUTPUT_FORMAT\=binary export PODS_BUILD_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products export PODS_CONFIGURATION_BUILD_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products/Debug-iphonesimulator export PODS_ROOT\=/Users/haneojin/Desktop/algocare-app/ios/Pods export PODS_TARGET_SRCROOT\=/Users/haneojin/Desktop/algocare-app/ios/Pods/../../node_modules/react-native/React/FBReactNativeSpec export PODS_XCFRAMEWORKS_BUILD_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products/Debug-iphonesimulator/XCFrameworkIntermediates export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR\=YES export PRECOMP_DESTINATION_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FBReactNativeSpec.build/PrefixHeaders export PRESERVE_DEAD_CODE_INITS_AND_TERMS\=NO export PRODUCT_BUNDLE_IDENTIFIER\=org.cocoapods.FBReactNativeSpec export PRODUCT_MODULE_NAME\=FBReactNativeSpec export PRODUCT_NAME\=FBReactNativeSpec export PRODUCT_SETTINGS_PATH\= export PRODUCT_TYPE\=com.apple.product-type.library.static export PROFILING_CODE\=NO export PROJECT\=Pods export PROJECT_DERIVED_FILE_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/DerivedSources export PROJECT_DIR\=/Users/haneojin/Desktop/algocare-app/ios/Pods export PROJECT_FILE_PATH\=/Users/haneojin/Desktop/algocare-app/ios/Pods/Pods.xcodeproj export PROJECT_NAME\=Pods export PROJECT_TEMP_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build export PROJECT_TEMP_ROOT\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS\=YES export REMOVE_CVS_FROM_RESOURCES\=YES export REMOVE_GIT_FROM_RESOURCES\=YES export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES\=YES export REMOVE_HG_FROM_RESOURCES\=YES export REMOVE_SVN_FROM_RESOURCES\=YES export REZ_COLLECTOR_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FBReactNativeSpec.build/ResourceManagerResources export REZ_EXECUTABLE\=YES export REZ_OBJECTS_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FBReactNativeSpec.build/ResourceManagerResources/Objects export REZ_SEARCH_PATHS\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products/Debug-iphonesimulator/FBReactNativeSpec\ export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES\=NO export SCRIPT_INPUT_FILE_0\=/Users/haneojin/Desktop/algocare-app/node_modules/react-native/Libraries export SCRIPT_INPUT_FILE_COUNT\=1 export SCRIPT_INPUT_FILE_LIST_COUNT\=0 export SCRIPT_OUTPUT_FILE_0\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FBReactNativeSpec.build/DerivedSources/codegen-FBReactNativeSpec.log export SCRIPT_OUTPUT_FILE_1\=/Users/haneojin/Desktop/algocare-app/node_modules/react-native/React/FBReactNativeSpec/FBReactNativeSpec/FBReactNativeSpec.h export SCRIPT_OUTPUT_FILE_2\=/Users/haneojin/Desktop/algocare-app/node_modules/react-native/React/FBReactNativeSpec/FBReactNativeSpec/FBReactNativeSpec-generated.mm export SCRIPT_OUTPUT_FILE_COUNT\=3 export SCRIPT_OUTPUT_FILE_LIST_COUNT\=0 export SDKROOT\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.5.sdk export SDK_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.5.sdk export SDK_DIR_iphonesimulator\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.5.sdk export SDK_DIR_iphonesimulator15_5\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.5.sdk export SDK_NAME\=iphonesimulator15.5 export SDK_NAMES\=iphonesimulator15.5 export SDK_PRODUCT_BUILD_VERSION\=19F64 export SDK_VERSION\=15.5 export SDK_VERSION_ACTUAL\=150500 export SDK_VERSION_MAJOR\=150000 export SDK_VERSION_MINOR\=150500 export SED\=/usr/bin/sed export SEPARATE_STRIP\=NO export SEPARATE_SYMBOL_EDIT\=NO export SET_DIR_MODE_OWNER_GROUP\=YES export SET_FILE_MODE_OWNER_GROUP\=NO export SHALLOW_BUNDLE\=NO export SHARED_DERIVED_FILE_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products/Debug-iphonesimulator/FBReactNativeSpec/DerivedSources export SHARED_PRECOMPS_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/PrecompiledHeaders export SKIP_INSTALL\=YES export SOURCE_ROOT\=/Users/haneojin/Desktop/algocare-app/ios/Pods export SRCROOT\=/Users/haneojin/Desktop/algocare-app/ios/Pods export STRINGSDATA_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FBReactNativeSpec.build/Objects-normal/undefined_arch export STRINGSDATA_ROOT\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FBReactNativeSpec.build export STRINGS_FILE_INFOPLIST_RENAME\=YES export STRINGS_FILE_OUTPUT_ENCODING\=binary export STRIP_BITCODE_FROM_COPIED_FILES\=NO export STRIP_INSTALLED_PRODUCT\=NO export STRIP_STYLE\=debugging export STRIP_SWIFT_SYMBOLS\=YES export SUPPORTED_DEVICE_FAMILIES\=1,2 export SUPPORTED_PLATFORMS\=iphoneos\ iphonesimulator export SUPPORTS_TEXT_BASED_API\=NO export SWIFT_ACTIVE_COMPILATION_CONDITIONS\=DEBUG\ export SWIFT_EMIT_LOC_STRINGS\=NO export SWIFT_OPTIMIZATION_LEVEL\=-Onone export SWIFT_PLATFORM_TARGET_PREFIX\=ios export SWIFT_RESPONSE_FILE_PATH_normal_arm64\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FBReactNativeSpec.build/Objects-normal/arm64/FBReactNativeSpec.SwiftFileList export SWIFT_VERSION\=5.0 export SYMROOT\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products export SYSTEM_ADMIN_APPS_DIR\=/Applications/Utilities export SYSTEM_APPS_DIR\=/Applications export SYSTEM_CORE_SERVICES_DIR\=/System/Library/CoreServices export SYSTEM_DEMOS_DIR\=/Applications/Extras export SYSTEM_DEVELOPER_APPS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications export SYSTEM_DEVELOPER_BIN_DIR\=/Applications/Xcode.app/Contents/Developer/usr/bin export SYSTEM_DEVELOPER_DEMOS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built\ Examples export SYSTEM_DEVELOPER_DIR\=/Applications/Xcode.app/Contents/Developer export SYSTEM_DEVELOPER_DOC_DIR\=/Applications/Xcode.app/Contents/Developer/ADC\ Reference\ Library export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications/Graphics\ Tools export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications/Java\ Tools export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications/Performance\ Tools export SYSTEM_DEVELOPER_RELEASENOTES_DIR\=/Applications/Xcode.app/Contents/Developer/ADC\ Reference\ Library/releasenotes export SYSTEM_DEVELOPER_TOOLS\=/Applications/Xcode.app/Contents/Developer/Tools export SYSTEM_DEVELOPER_TOOLS_DOC_DIR\=/Applications/Xcode.app/Contents/Developer/ADC\ Reference\ Library/documentation/DeveloperTools export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR\=/Applications/Xcode.app/Contents/Developer/ADC\ Reference\ Library/releasenotes/DeveloperTools export SYSTEM_DEVELOPER_USR_DIR\=/Applications/Xcode.app/Contents/Developer/usr export SYSTEM_DEVELOPER_UTILITIES_DIR\=/Applications/Xcode.app/Contents/Developer/Applications/Utilities export SYSTEM_DEXT_INSTALL_PATH\=/System/Library/DriverExtensions export SYSTEM_DOCUMENTATION_DIR\=/Library/Documentation export SYSTEM_KEXT_INSTALL_PATH\=/System/Library/Extensions export SYSTEM_LIBRARY_DIR\=/System/Library export TAPI_ENABLE_PROJECT_HEADERS\=NO export TAPI_VERIFY_MODE\=ErrorsOnly export TARGETED_DEVICE_FAMILY\=1,2 export TARGETNAME\=FBReactNativeSpec export TARGET_BUILD_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Products/Debug-iphonesimulator/FBReactNativeSpec export TARGET_DEVICE_IDENTIFIER\=D863C036-6FB1-4952-91DE-495F10A8541F export TARGET_DEVICE_MODEL\=iPhone13,2 export TARGET_DEVICE_OS_VERSION\=14.5 export TARGET_DEVICE_PLATFORM_NAME\=iphonesimulator export TARGET_NAME\=FBReactNativeSpec export TARGET_TEMP_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FBReactNativeSpec.build export TEMP_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FBReactNativeSpec.build export TEMP_FILES_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FBReactNativeSpec.build export TEMP_FILE_DIR\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FBReactNativeSpec.build export TEMP_ROOT\=/Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex export TEST_FRAMEWORK_SEARCH_PATHS\=\ /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks\ /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator15.5.sdk/Developer/Library/Frameworks export TEST_LIBRARY_SEARCH_PATHS\=\ /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/lib export TOOLCHAINS\=com.apple.dt.toolchain.XcodeDefault export TOOLCHAIN_DIR\=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain export TREAT_MISSING_BASELINES_AS_TEST_FAILURES\=NO export UID\=501 export UNSTRIPPED_PRODUCT\=NO export USER\=haneojin export USER_APPS_DIR\=/Users/haneojin/Applications export USER_LIBRARY_DIR\=/Users/haneojin/Library export USE_DYNAMIC_NO_PIC\=YES export USE_HEADERMAP\=YES export USE_HEADER_SYMLINKS\=NO export USE_LLVM_TARGET_TRIPLES\=YES export USE_LLVM_TARGET_TRIPLES_FOR_CLANG\=YES export USE_LLVM_TARGET_TRIPLES_FOR_LD\=YES export USE_LLVM_TARGET_TRIPLES_FOR_TAPI\=YES export USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES\=YES export VALIDATE_DEVELOPMENT_ASSET_PATHS\=YES_ERROR export VALIDATE_PRODUCT\=NO export VALIDATE_WORKSPACE\=YES_ERROR export VALID_ARCHS\=arm64\ arm64e\ i386\ x86_64 export VERBOSE_PBXCP\=NO export VERSION_INFO_BUILDER\=haneojin export VERSION_INFO_FILE\=FBReactNativeSpec_vers.c export VERSION_INFO_STRING\=\"@\(\#\)PROGRAM:FBReactNativeSpec\ \ PROJECT:Pods-\" export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES\=NO export XCODE_APP_SUPPORT_DIR\=/Applications/Xcode.app/Contents/Developer/Library/Xcode export XCODE_PRODUCT_BUILD_VERSION\=13F100 export XCODE_VERSION_ACTUAL\=1341 export XCODE_VERSION_MAJOR\=1300 export XCODE_VERSION_MINOR\=1340 export XPCSERVICES_FOLDER_PATH\=/XPCServices export YACC\=yacc export arch\=undefined_arch export variant\=normal /bin/sh -c /Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FBReactNativeSpec.build/Script-5839FF1C11D94C5EDB077E8191180104.sh nvm is not compatible with the "PREFIX" environment variable: currently set to "/opt/homebrew" Run `unset PREFIX` to unset it. Command PhaseScriptExecution failed with a nonzero exit code /Users/haneojin/Desktop/algocare-app/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, but the range of supported deployment target versions is 9.0 to 15.5.99. (in target 'boost-for-react-native' from project 'Pods') /Users/haneojin/Desktop/algocare-app/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 4.3, but the range of supported deployment target versions is 9.0 to 15.5.99. (in target 'Base64' from project 'Pods') /Users/haneojin/Desktop/algocare-app/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 7.0, but the range of supported deployment target versions is 9.0 to 15.5.99. (in target 'CodePush' from project 'Pods') /Users/haneojin/Desktop/algocare-app/ios/Pods/Pods.xcodeproj: warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 6.0, but the range of supported deployment target versions is 9.0 to 15.5.99. (in target 'JWT' from project 'Pods') 2022-06-13 22:36:30.461 xcodebuild[15095:7341771] Requested but did not find extension point with identifier Xcode.IDEKit.ExtensionSentinelHostApplications for extension Xcode.DebuggerFoundation.AppExtensionHosts.watchOS of plug-in com.apple.dt.IDEWatchSupportCore 2022-06-13 22:36:30.461 xcodebuild[15095:7341771] Requested but did not find extension point with identifier Xcode.IDEKit.ExtensionPointIdentifierToBundleIdentifier for extension Xcode.DebuggerFoundation.AppExtensionToBundleIdentifierMap.watchOS of plug-in com.apple.dt.IDEWatchSupportCore ** BUILD FAILED ** The following build commands failed: CompileSwiftSources normal arm64 com.apple.xcode.tools.swift.compiler (in target 'lottie-react-native' from project 'Pods') PhaseScriptExecution [CP-User]\ Generate\ Specs /Users/haneojin/Library/Developer/Xcode/DerivedData/algocareApp-fxtamoohiojpjhgbqjytzwpdqyks/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FBReactNativeSpec.build/Script-5839FF1C11D94C5EDB077E8191180104.sh (in target 'FBReactNativeSpec' from project 'Pods') (2 failures) info Run CLI with --verbose flag for more details. error Command failed with exit code 1. info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.
위와 같은 양상이라면
node_modules/react-natvie/scripts/find-node.sh
파일의 내용을 전부 주석 처리한 후에 빌드해보면 잘 됨FBReactNativeSpec error after upgrade from 0.63.4 to 0.64.0


공통
개행문자 관련 이슈 ( CLRF - \r\n ↔ LF - \n )
상황4가지/해결방법
에러 상황
pod install
시/bin/bash: ./configure: /bin/sh^M: bad interpreter: No such file or directory
npx react-naitive run-android
시\r
을 인식할 수 없다는 에러 메세지가 뜨는 경우
- gradlew.bat 파일의 내용이 바뀌지 않았는데 chaged에 뜨는 경우
- 실행은 되는데, vscode에서
Delete `␍` eslint
라고 빨간줄이 엄청 뜨는 경우
원인/해결방안
- 파일의 내용은 단 1도 다른 것이 없는데, 깃 변경사항에 계속 뜨며 되돌려지지도 않음
- 원인 : 개행 문자 설정 때문
- windows :
\r\n
(0x0D 0x0A) - unix, mac :
\n
( 0x0A )
내용이 변경된 게 아니라면 무시하고 커밋해도 됨.
방법 1. git config 설정 변경하기
- 1. 조회 할 때에는 CRLF↔LF 사이에 변환하지 않고, 입력을 줄 때에만 변환해서 저장하도록 설정하기
# 현재 적용된 값 확인 $ git config --global core.autocrlf # 자동변환을 input으로 설정 $ git config --global --add core.autocrlf input
방법 2. vim으로 열어서 unix 파일포맷으로 저장하기
vi 해당파일
:set fileformat=unix
# 윈도우 개행으로 저장된 파일 열기 $ vi <해당파일명> # 파일 형식을 unix 형태로 바꾸기 -> 알아서 \r\n을 \n으로 바꿔줌 $ :set fileformat=unix
방법 3.
.eslintrc.js
파일 수정이 경우는 단순히 vscode에서 빨간줄 표시를 하는 것만이 거슬리는 경우에 해당한다.
prettier란에 endOfLine을 auto로 설정하면 CRLF로 파일이 작성돼있더라도 Unix나 Mac에서 별도로 빨간줄을 표시하지 않으며, LF로 변환해서 저장하지도 않는다.
.png?table=block&id=72e24bd5-e785-43f6-bd37-0d5fbb27c7b3&cache=v2)
rules: { 'prettier/prettier': [ 'error', { endOfLine: 'auto', }, ], },