react-native: RN 0.62 pod repo update error

Please provide all the information requested. Issues that do not follow this format are likely to stall.

Description

saravanakumar@SaravanumarsMBP ios % pod repo update
Updating spec repo `trunk`
saravanakumar@SaravanumarsMBP ios % pod install --repo-update
Detected React Native module pods for RNCAsyncStorage, RNCMaskedView, RNCPicker, RNDateTimePicker, RNGestureHandler, RNLocalize, RNReanimated, RNSVG, RNScreens, RNVectorIcons, ReactNativeUiLib, RealmJS, react-native-blur, react-native-contacts, react-native-geolocation, react-native-maps, react-native-netinfo, react-native-safe-area-context, and react-native-slider
Updating local specs repositories
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 "ReactCommon/jscallinvoker":
  In Podfile:
    ReactCommon/jscallinvoker (from `../node_modules/react-native/ReactCommon`)

None of your spec sources contain a spec satisfying the dependency: `ReactCommon/jscallinvoker (from `../node_modules/react-native/ReactCommon`)`.

You have either:
 * mistyped the name or version.
 * not added the source repo that hosts the Podspec to your Podfile.
saravanakumar@SaravanumarsMBP ios %

React Native version:

info Fetching system and libraries information...
System:
    OS: macOS 10.15.4
    CPU: (16) x64 Intel(R) Core(TM) i9-9880H CPU @ 2.30GHz
    Memory: 1.49 GB / 16.00 GB
    Shell: 5.7.1 - /bin/zsh
  Binaries:
    Node: 10.19.0 - ~/.nvm/versions/node/v10.19.0/bin/node
    Yarn: 1.22.0 - /usr/local/bin/yarn
    npm: 6.13.4 - ~/.nvm/versions/node/v10.19.0/bin/npm
    Watchman: 4.9.0 - /usr/local/bin/watchman
  SDKs:
    iOS SDK:
      Platforms: iOS 13.2, DriverKit 19.0, macOS 10.15, tvOS 13.2, watchOS 6.1
    Android SDK: Not Found
  IDEs:
    Android Studio: Not Found
    Xcode: 11.3.1/11C504 - /usr/bin/xcodebuild
  Languages:
    Python: 2.7.16 - /usr/bin/python
  npmPackages:
    @react-native-community/cli: Not Found
    react: 16.13.1 => 16.13.1
    react-native: 0.62.0 => 0.62.0
  npmGlobalPackages:
    *react-native*: Not Found

Steps To Reproduce

Provide a detailed list of steps that reproduce the issue.

  1. Upgrade to 0.62.0 version
  2. cd ios
  3. pod install / pod install --repo-update

Expected Results

pod install --repo-update should not throw any error.

Snack, code example, screenshot, or link to a repository:

Please provide a Snack (https://snack.expo.io/), a link to a repository on GitHub, or provide a minimal code example that reproduces the problem. You may provide a screenshot of the application if you think it is relevant to your bug report. Here are some tips for providing a minimal example: https://stackoverflow.com/help/mcve

About this issue

  • Original URL
  • State: closed
  • Created 4 years ago
  • Reactions: 3
  • Comments: 23 (1 by maintainers)

Commits related to this issue

Most upvoted comments

I solved this issue (version 0.63) by changing the line in the Podfile from

pod 'ReactCommon/callinvoker', :path => "../node_modules/react-native/ReactCommon"

to

pod 'React-callinvoker', :path => "../node_modules/react-native/ReactCommon/callinvoker"

In my case i already have : pod 'ReactCommon/callinvoker', :path => "../node_modules/react-native/ReactCommon"

And still have an error :

[!] CocoaPods could not find compatible versions for pod “ReactCommon/callinvoker”: In snapshot (Podfile.lock): ReactCommon/callinvoker (from ../node_modules/react-native/ReactCommon)

In Podfile: ReactCommon/callinvoker (from ../node_modules/react-native/ReactCommon)

None of your spec sources contain a spec satisfying the dependency: ReactCommon/callinvoker (from …/node_modules/react-native/ReactCommon).

You have either:

  • mistyped the name or version.
  • not added the source repo that hosts the Podspec to your Podfile.

@alloy

I wanted to find exactly what was causing it so I stepped through setting up my environment until the problem occured.

In summary the problem occurs after installing https://github.com/wix/react-native-navigation

None of the various remedies listed in this thread worked for me - my environment is permanently broken.

Here is a sequence of steps to invoke the problem for me: ``` npx react-native info info Fetching system and libraries information... System: OS: macOS High Sierra 10.13.6 CPU: (4) x64 Intel(R) Core(TM) i5-4278U CPU @ 2.60GHz Memory: 108.62 MB / 16.00 GB Shell: 3.2.57 - /bin/bash Binaries: Node: 12.18.1 - /usr/local/bin/node Yarn: 1.22.4 - /usr/local/bin/yarn npm: 6.14.5 - /usr/local/bin/npm Watchman: 4.9.0 - /usr/local/bin/watchman Managers: CocoaPods: 1.9.3 - /usr/local/bin/pod SDKs: iOS SDK: Platforms: iOS 12.1, macOS 10.14, tvOS 12.1, watchOS 5.1 Android SDK: API Levels: 28, 30 Build Tools: 28.0.3, 30.0.0 System Images: android-27 | Google APIs Intel x86 Atom, android-30 | Google APIs Intel x86 Atom Android NDK: Not Found IDEs: Android Studio: 4.0 AI-193.6911.18.40.6514223 Xcode: 10.1/10B61 - /usr/bin/xcodebuild Languages: Java: 1.8.0_252 - /usr/bin/javac Python: 2.7.6 - /Library/Frameworks/Python.framework/Versions/2.7/bin/python npmPackages: @react-native-community/cli: Not Found react: 16.11.0 => 16.11.0 react-native: 0.62.2 => 0.62.2 npmGlobalPackages: *react-native*: Not Found

**sequence of commands to recreate problem:**

npx react-native init testapp --template react-native-template-typescript cd testapp npx react-native run-ios npm install react-native-gesture-handler npx react-native run-ios cd ios pod install cd … npm install chadsmith/react-native-microphone-stream cd ios pod install cd … npx react-native run-ios npm install react-native-navigation cd ios pod install cd … npx react-native run-ios at this point the problem occurs, here is the error output:


info Found Xcode workspace "testapp.xcworkspace"
info Building (using "xcodebuild -workspace testapp.xcworkspace -configuration Debug -scheme testapp -destination id=B2720661-2C1C-4617-A057-77AD33DA5228")
..................................................
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 testapp.xcworkspace. Run CLI with --verbose flag for more details.
note: Using new build system
note: Planning build
note: Constructing build description
Build system information
warning: The iOS Simulator deployment target is set to 5.0, but the range of supported deployment target versions for this platform is 8.0 to 12.1. (in target 'CocoaAsyncSocket')

Build system information
warning: The iOS Simulator deployment target is set to 6.0, but the range of supported deployment target versions for this platform is 8.0 to 12.1. (in target 'OpenSSL-Universal')

Build system information
warning: Capabilities for testapp may not function correctly because its entitlements use a placeholder team ID. To resolve this, select a development team in the build settings editor. (in target 'testapp')

Build system information
warning: no rule to process file '/Users/usernamesupercoders/devel/testapp/ios/Pods/Flipper-RSocket/rsocket/benchmarks/CMakeLists.txt' of type 'text' for architecture 'x86_64' (in target 'Flipper-RSocket')

Build system information
warning: no rule to process file '/Users/usernamesupercoders/devel/testapp/ios/Pods/Flipper-RSocket/rsocket/benchmarks/README.md' of type 'net.daringfireball.markdown' for architecture 'x86_64' (in target 'Flipper-RSocket')

Build system information
warning: no rule to process file '/Users/usernamesupercoders/devel/testapp/ios/Pods/Flipper-RSocket/rsocket/README.md' of type 'net.daringfireball.markdown' for architecture 'x86_64' (in target 'Flipper-RSocket')

Build system information
note: Removed stale file '/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/Script-B67BAFA72E99EAED7DEC3D5F2DF1B2F3.sh'

WriteAuxiliaryFile /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/React-jsinspector.build/React-jsinspector-project-headers.hmap (in target: React-jsinspector)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    write-file /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/React-jsinspector.build/React-jsinspector-project-headers.hmap

WriteAuxiliaryFile /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Yoga.build/Yoga-project-headers.hmap (in target: Yoga)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    write-file /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Yoga.build/Yoga-project-headers.hmap

WriteAuxiliaryFile /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/DoubleConversion.build/DoubleConversion-project-headers.hmap (in target: DoubleConversion)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    write-file /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/DoubleConversion.build/DoubleConversion-project-headers.hmap

WriteAuxiliaryFile /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/CocoaAsyncSocket.build/CocoaAsyncSocket-project-headers.hmap (in target: CocoaAsyncSocket)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    write-file /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/CocoaAsyncSocket.build/CocoaAsyncSocket-project-headers.hmap

WriteAuxiliaryFile /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper-DoubleConversion.build/Flipper-DoubleConversion-project-headers.hmap (in target: Flipper-DoubleConversion)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    write-file /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper-DoubleConversion.build/Flipper-DoubleConversion-project-headers.hmap

WriteAuxiliaryFile /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper-PeerTalk.build/Flipper-PeerTalk-project-headers.hmap (in target: Flipper-PeerTalk)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    write-file /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper-PeerTalk.build/Flipper-PeerTalk-project-headers.hmap

WriteAuxiliaryFile /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/YogaKit-project-headers.hmap (in target: YogaKit)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    write-file /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/YogaKit-project-headers.hmap

WriteAuxiliaryFile /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/React-jsi.build/React-jsi-project-headers.hmap (in target: React-jsi)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    write-file /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/React-jsi.build/React-jsi-project-headers.hmap

WriteAuxiliaryFile /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/React-cxxreact.build/React-cxxreact-project-headers.hmap (in target: React-cxxreact)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    write-file /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/React-cxxreact.build/React-cxxreact-project-headers.hmap

CompileSwiftSources normal x86_64 com.apple.xcode.tools.swift.compiler (in target: YogaKit)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
    export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -incremental -module-name YogaKit -Onone -enable-batch-mode -enforce-exclusivity=checked -DDEBUG -D COCOAPODS -Xcc -fmodule-map-file=/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/yoga/Yoga.modulemap -import-underlying-module -Xcc -fmodule-map-file=/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/YogaKit/YogaKit.modulemap -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -target x86_64-apple-ios8.0-simulator -g -module-cache-path /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Index/DataStore -swift-version 4 -I /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Products/Debug-iphonesimulator/YogaKit -F /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Products/Debug-iphonesimulator/YogaKit -parse-as-library -c -j4 /Users/usernamesupercoders/devel/testapp/ios/Pods/YogaKit/YogaKit/Source/YGLayoutExtensions.swift -output-file-map /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/Objects-normal/x86_64/YogaKit-OutputFileMap.json -parseable-output -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/Objects-normal/x86_64/YogaKit.swiftmodule -Xcc -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/YogaKit-generated-files.hmap -Xcc -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/YogaKit-own-target-headers.hmap -Xcc -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/YogaKit-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/YogaKit-project-headers.hmap -Xcc -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Products/Debug-iphonesimulator/YogaKit/include -Xcc -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Private -Xcc -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Private/YogaKit -Xcc -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public -Xcc -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/Yoga -Xcc -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/DerivedSources/x86_64 -Xcc -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/DerivedSources -Xcc -DPOD_CONFIGURATION_DEBUG=1 -Xcc -DDEBUG=1 -Xcc -DCOCOAPODS=1 -emit-objc-header -emit-objc-header-path /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/Objects-normal/x86_64/YogaKit-Swift.h -Xcc -working-directory/Users/usernamesupercoders/devel/testapp/ios/Pods

MergeSwiftModule normal x86_64 (in target: YogaKit)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift -frontend -merge-modules -emit-module /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/Objects-normal/x86_64/YGLayoutExtensions~partial.swiftmodule -parse-as-library -sil-merge-partial-modules -disable-diagnostic-passes -disable-sil-perf-optzns -target x86_64-apple-ios8.0-simulator -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.1.sdk -I /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Products/Debug-iphonesimulator/YogaKit -F /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Products/Debug-iphonesimulator/YogaKit -enable-testing -g -import-underlying-module -module-cache-path /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -swift-version 4 -enforce-exclusivity=checked -Onone -D DEBUG -D COCOAPODS -serialize-debugging-options -Xcc -fmodule-map-file=/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/yoga/Yoga.modulemap -Xcc -fmodule-map-file=/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/YogaKit/YogaKit.modulemap -Xcc -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/YogaKit-generated-files.hmap -Xcc -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/YogaKit-own-target-headers.hmap -Xcc -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/YogaKit-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/YogaKit-project-headers.hmap -Xcc -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Products/Debug-iphonesimulator/YogaKit/include -Xcc -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Private -Xcc -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Private/YogaKit -Xcc -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public -Xcc -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/Yoga -Xcc -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/DerivedSources/x86_64 -Xcc -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/DerivedSources -Xcc -DPOD_CONFIGURATION_DEBUG=1 -Xcc -DDEBUG=1 -Xcc -DCOCOAPODS=1 -Xcc -working-directory/Users/usernamesupercoders/devel/testapp/ios/Pods -emit-module-doc-path /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/Objects-normal/x86_64/YogaKit.swiftdoc -emit-objc-header-path /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/Objects-normal/x86_64/YogaKit-Swift.h -module-name YogaKit -o /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/YogaKit.build/Objects-normal/x86_64/YogaKit.swiftmodule

WriteAuxiliaryFile /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/React-jsiexecutor.build/React-jsiexecutor-project-headers.hmap (in target: React-jsiexecutor)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    write-file /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/React-jsiexecutor.build/React-jsiexecutor-project-headers.hmap

WriteAuxiliaryFile /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/React-Core.build/React-Core-project-headers.hmap (in target: React-Core)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    write-file /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/React-Core.build/React-Core-project-headers.hmap

WriteAuxiliaryFile /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/React-RCTText.build/React-RCTText-project-headers.hmap (in target: React-RCTText)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    write-file /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/React-RCTText.build/React-RCTText-project-headers.hmap

WriteAuxiliaryFile /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RCTTypeSafety.build/RCTTypeSafety-project-headers.hmap (in target: RCTTypeSafety)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    write-file /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RCTTypeSafety.build/RCTTypeSafety-project-headers.hmap

WriteAuxiliaryFile /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactCommon.build/ReactCommon-project-headers.hmap (in target: ReactCommon)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    write-file /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactCommon.build/ReactCommon-project-headers.hmap

WriteAuxiliaryFile /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FBReactNativeSpec.build/FBReactNativeSpec-project-headers.hmap (in target: FBReactNativeSpec)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    write-file /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/FBReactNativeSpec.build/FBReactNativeSpec-project-headers.hmap

WriteAuxiliaryFile /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/React-RCTSettings.build/React-RCTSettings-project-headers.hmap (in target: React-RCTSettings)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    write-file /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/React-RCTSettings.build/React-RCTSettings-project-headers.hmap

WriteAuxiliaryFile /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/React-RCTNetwork.build/React-RCTNetwork-project-headers.hmap (in target: React-RCTNetwork)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    write-file /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/React-RCTNetwork.build/React-RCTNetwork-project-headers.hmap

WriteAuxiliaryFile /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/React-RCTAnimation.build/React-RCTAnimation-project-headers.hmap (in target: React-RCTAnimation)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    write-file /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/React-RCTAnimation.build/React-RCTAnimation-project-headers.hmap

WriteAuxiliaryFile /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/React-RCTVibration.build/React-RCTVibration-project-headers.hmap (in target: React-RCTVibration)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    write-file /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/React-RCTVibration.build/React-RCTVibration-project-headers.hmap

WriteAuxiliaryFile /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/React-RCTLinking.build/React-RCTLinking-project-headers.hmap (in target: React-RCTLinking)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    write-file /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/React-RCTLinking.build/React-RCTLinking-project-headers.hmap

WriteAuxiliaryFile /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/React-RCTImage.build/React-RCTImage-project-headers.hmap (in target: React-RCTImage)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    write-file /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/React-RCTImage.build/React-RCTImage-project-headers.hmap

WriteAuxiliaryFile /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/React-RCTBlob.build/React-RCTBlob-project-headers.hmap (in target: React-RCTBlob)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    write-file /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/React-RCTBlob.build/React-RCTBlob-project-headers.hmap

WriteAuxiliaryFile /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/React-CoreModules.build/React-CoreModules-project-headers.hmap (in target: React-CoreModules)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    write-file /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/React-CoreModules.build/React-CoreModules-project-headers.hmap

WriteAuxiliaryFile /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation.hmap (in target: ReactNativeNavigation)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    write-file /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation.hmap

WriteAuxiliaryFile /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-all-non-framework-target-headers.hmap (in target: ReactNativeNavigation)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    write-file /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-all-non-framework-target-headers.hmap

WriteAuxiliaryFile /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNGestureHandler.build/RNGestureHandler-project-headers.hmap (in target: RNGestureHandler)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    write-file /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/RNGestureHandler.build/RNGestureHandler-project-headers.hmap

WriteAuxiliaryFile /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-microphone-stream.build/react-native-microphone-stream-project-headers.hmap (in target: react-native-microphone-stream)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    write-file /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/react-native-microphone-stream.build/react-native-microphone-stream-project-headers.hmap

WriteAuxiliaryFile /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-project-headers.hmap (in target: ReactNativeNavigation)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    write-file /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-project-headers.hmap

WriteAuxiliaryFile /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-own-target-headers.hmap (in target: ReactNativeNavigation)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    write-file /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-own-target-headers.hmap

WriteAuxiliaryFile /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-all-target-headers.hmap (in target: ReactNativeNavigation)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    write-file /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-all-target-headers.hmap

CompileC /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/VICMAImageView.o /Users/usernamesupercoders/devel/testapp/node_modules/react-native-navigation/lib/ios/VICMAImageView.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target: ReactNativeNavigation)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/usernamesupercoders/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/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=9.0 -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/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Index/DataStore -iquote /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-generated-files.hmap -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-own-target-headers.hmap -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-all-non-framework-target-headers.hmap -ivfsoverlay /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/all-product-headers.yaml -iquote /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-project-headers.hmap -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Products/Debug-iphonesimulator/ReactNativeNavigation/include -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Private -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Private/ReactNativeNavigation -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/DoubleConversion -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/FBLazyVector -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/FBReactNativeSpec -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/RCTRequired -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/RCTTypeSafety -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-Core -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-RCTText -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-cxxreact -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-jsi -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-jsiexecutor -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-jsinspector -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/ReactCommon -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/ReactNativeNavigation -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/Yoga -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/glog -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/DerivedSources/x86_64 -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/DerivedSources -F/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Products/Debug-iphonesimulator/ReactNativeNavigation -fmodule-map-file=/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/yoga/Yoga.modulemap -include /Users/usernamesupercoders/devel/testapp/ios/Pods/Target\ Support\ Files/ReactNativeNavigation/ReactNativeNavigation-prefix.pch -MMD -MT dependencies -MF /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/VICMAImageView.d --serialize-diagnostics /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/VICMAImageView.dia -c /Users/usernamesupercoders/devel/testapp/node_modules/react-native-navigation/lib/ios/VICMAImageView.m -o /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/VICMAImageView.o

CompileC /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/VerticalTranslationTransition.o /Users/usernamesupercoders/devel/testapp/node_modules/react-native-navigation/lib/ios/VerticalTranslationTransition.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target: ReactNativeNavigation)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/usernamesupercoders/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/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=9.0 -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/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Index/DataStore -iquote /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-generated-files.hmap -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-own-target-headers.hmap -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-all-non-framework-target-headers.hmap -ivfsoverlay /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/all-product-headers.yaml -iquote /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-project-headers.hmap -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Products/Debug-iphonesimulator/ReactNativeNavigation/include -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Private -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Private/ReactNativeNavigation -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/DoubleConversion -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/FBLazyVector -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/FBReactNativeSpec -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/RCTRequired -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/RCTTypeSafety -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-Core -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-RCTText -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-cxxreact -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-jsi -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-jsiexecutor -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-jsinspector -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/ReactCommon -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/ReactNativeNavigation -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/Yoga -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/glog -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/DerivedSources/x86_64 -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/DerivedSources -F/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Products/Debug-iphonesimulator/ReactNativeNavigation -fmodule-map-file=/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/yoga/Yoga.modulemap -include /Users/usernamesupercoders/devel/testapp/ios/Pods/Target\ Support\ Files/ReactNativeNavigation/ReactNativeNavigation-prefix.pch -MMD -MT dependencies -MF /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/VerticalTranslationTransition.d --serialize-diagnostics /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/VerticalTranslationTransition.dia -c /Users/usernamesupercoders/devel/testapp/node_modules/react-native-navigation/lib/ios/VerticalTranslationTransition.m -o /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/VerticalTranslationTransition.o

CompileC /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/VerticalRotationTransition.o /Users/usernamesupercoders/devel/testapp/node_modules/react-native-navigation/lib/ios/VerticalRotationTransition.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target: ReactNativeNavigation)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/usernamesupercoders/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/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=9.0 -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/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Index/DataStore -iquote /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-generated-files.hmap -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-own-target-headers.hmap -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-all-non-framework-target-headers.hmap -ivfsoverlay /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/all-product-headers.yaml -iquote /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-project-headers.hmap -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Products/Debug-iphonesimulator/ReactNativeNavigation/include -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Private -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Private/ReactNativeNavigation -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/DoubleConversion -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/FBLazyVector -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/FBReactNativeSpec -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/RCTRequired -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/RCTTypeSafety -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-Core -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-RCTText -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-cxxreact -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-jsi -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-jsiexecutor -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-jsinspector -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/ReactCommon -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/ReactNativeNavigation -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/Yoga -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/glog -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/DerivedSources/x86_64 -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/DerivedSources -F/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Products/Debug-iphonesimulator/ReactNativeNavigation -fmodule-map-file=/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/yoga/Yoga.modulemap -include /Users/usernamesupercoders/devel/testapp/ios/Pods/Target\ Support\ Files/ReactNativeNavigation/ReactNativeNavigation-prefix.pch -MMD -MT dependencies -MF /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/VerticalRotationTransition.d --serialize-diagnostics /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/VerticalRotationTransition.dia -c /Users/usernamesupercoders/devel/testapp/node_modules/react-native-navigation/lib/ios/VerticalRotationTransition.m -o /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/VerticalRotationTransition.o

CompileC /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/WindowOptions.o /Users/usernamesupercoders/devel/testapp/node_modules/react-native-navigation/lib/ios/WindowOptions.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target: ReactNativeNavigation)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/usernamesupercoders/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/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=9.0 -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/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Index/DataStore -iquote /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-generated-files.hmap -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-own-target-headers.hmap -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-all-non-framework-target-headers.hmap -ivfsoverlay /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/all-product-headers.yaml -iquote /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-project-headers.hmap -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Products/Debug-iphonesimulator/ReactNativeNavigation/include -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Private -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Private/ReactNativeNavigation -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/DoubleConversion -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/FBLazyVector -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/FBReactNativeSpec -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/RCTRequired -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/RCTTypeSafety -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-Core -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-RCTText -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-cxxreact -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-jsi -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-jsiexecutor -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-jsinspector -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/ReactCommon -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/ReactNativeNavigation -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/Yoga -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/glog -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/DerivedSources/x86_64 -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/DerivedSources -F/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Products/Debug-iphonesimulator/ReactNativeNavigation -fmodule-map-file=/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/yoga/Yoga.modulemap -include /Users/usernamesupercoders/devel/testapp/ios/Pods/Target\ Support\ Files/ReactNativeNavigation/ReactNativeNavigation-prefix.pch -MMD -MT dependencies -MF /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/WindowOptions.d --serialize-diagnostics /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/WindowOptions.dia -c /Users/usernamesupercoders/devel/testapp/node_modules/react-native-navigation/lib/ios/WindowOptions.m -o /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/WindowOptions.o

CompileC /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/UIViewController+Utils.o /Users/usernamesupercoders/devel/testapp/node_modules/react-native-navigation/lib/ios/Utils/UIViewController+Utils.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target: ReactNativeNavigation)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/usernamesupercoders/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/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=9.0 -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/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Index/DataStore -iquote /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-generated-files.hmap -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-own-target-headers.hmap -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-all-non-framework-target-headers.hmap -ivfsoverlay /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/all-product-headers.yaml -iquote /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-project-headers.hmap -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Products/Debug-iphonesimulator/ReactNativeNavigation/include -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Private -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Private/ReactNativeNavigation -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/DoubleConversion -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/FBLazyVector -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/FBReactNativeSpec -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/RCTRequired -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/RCTTypeSafety -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-Core -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-RCTText -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-cxxreact -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-jsi -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-jsiexecutor -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-jsinspector -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/ReactCommon -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/ReactNativeNavigation -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/Yoga -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/glog -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/DerivedSources/x86_64 -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/DerivedSources -F/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Products/Debug-iphonesimulator/ReactNativeNavigation -fmodule-map-file=/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/yoga/Yoga.modulemap -include /Users/usernamesupercoders/devel/testapp/ios/Pods/Target\ Support\ Files/ReactNativeNavigation/ReactNativeNavigation-prefix.pch -MMD -MT dependencies -MF /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/UIViewController+Utils.d --serialize-diagnostics /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/UIViewController+Utils.dia -c /Users/usernamesupercoders/devel/testapp/node_modules/react-native-navigation/lib/ios/Utils/UIViewController+Utils.m -o /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/UIViewController+Utils.o

CompileC /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/UIViewController+SideMenuController.o /Users/usernamesupercoders/devel/testapp/node_modules/react-native-navigation/lib/ios/UIViewController+SideMenuController.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target: ReactNativeNavigation)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/usernamesupercoders/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/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=9.0 -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/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Index/DataStore -iquote /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-generated-files.hmap -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-own-target-headers.hmap -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-all-non-framework-target-headers.hmap -ivfsoverlay /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/all-product-headers.yaml -iquote /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-project-headers.hmap -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Products/Debug-iphonesimulator/ReactNativeNavigation/include -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Private -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Private/ReactNativeNavigation -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/DoubleConversion -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/FBLazyVector -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/FBReactNativeSpec -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/RCTRequired -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/RCTTypeSafety -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-Core -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-RCTText -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-cxxreact -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-jsi -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-jsiexecutor -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-jsinspector -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/ReactCommon -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/ReactNativeNavigation -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/Yoga -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/glog -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/DerivedSources/x86_64 -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/DerivedSources -F/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Products/Debug-iphonesimulator/ReactNativeNavigation -fmodule-map-file=/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/yoga/Yoga.modulemap -include /Users/usernamesupercoders/devel/testapp/ios/Pods/Target\ Support\ Files/ReactNativeNavigation/ReactNativeNavigation-prefix.pch -MMD -MT dependencies -MF /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/UIViewController+SideMenuController.d --serialize-diagnostics /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/UIViewController+SideMenuController.dia -c /Users/usernamesupercoders/devel/testapp/node_modules/react-native-navigation/lib/ios/UIViewController+SideMenuController.m -o /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/UIViewController+SideMenuController.o

CompileC /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/UIViewController+RNNOptions.o /Users/usernamesupercoders/devel/testapp/node_modules/react-native-navigation/lib/ios/UIViewController+RNNOptions.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target: ReactNativeNavigation)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/usernamesupercoders/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/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=9.0 -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/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Index/DataStore -iquote /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-generated-files.hmap -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-own-target-headers.hmap -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-all-non-framework-target-headers.hmap -ivfsoverlay /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/all-product-headers.yaml -iquote /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-project-headers.hmap -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Products/Debug-iphonesimulator/ReactNativeNavigation/include -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Private -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Private/ReactNativeNavigation -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/DoubleConversion -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/FBLazyVector -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/FBReactNativeSpec -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/RCTRequired -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/RCTTypeSafety -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-Core -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-RCTText -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-cxxreact -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-jsi -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-jsiexecutor -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-jsinspector -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/ReactCommon -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/ReactNativeNavigation -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/Yoga -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/glog -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/DerivedSources/x86_64 -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/DerivedSources -F/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Products/Debug-iphonesimulator/ReactNativeNavigation -fmodule-map-file=/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/yoga/Yoga.modulemap -include /Users/usernamesupercoders/devel/testapp/ios/Pods/Target\ Support\ Files/ReactNativeNavigation/ReactNativeNavigation-prefix.pch -MMD -MT dependencies -MF /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/UIViewController+RNNOptions.d --serialize-diagnostics /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/UIViewController+RNNOptions.dia -c /Users/usernamesupercoders/devel/testapp/node_modules/react-native-navigation/lib/ios/UIViewController+RNNOptions.m -o /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/UIViewController+RNNOptions.o
/Users/usernamesupercoders/devel/testapp/node_modules/react-native-navigation/lib/ios/UIViewController+RNNOptions.m:99:25: error: property 'standardAppearance' not found on object of type 'UITabBarItem *'
        self.tabBarItem.standardAppearance.stackedLayoutAppearance.normal.badgeBackgroundColor = badgeColor;
                        ^
1 error generated.

CompileC /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/UIViewController+MMDrawerController.o /Users/usernamesupercoders/devel/testapp/node_modules/react-native-navigation/lib/ios/RNNSideMenu/MMDrawerController/UIViewController+MMDrawerController.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target: ReactNativeNavigation)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/usernamesupercoders/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/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=9.0 -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/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Index/DataStore -iquote /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-generated-files.hmap -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-own-target-headers.hmap -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-all-non-framework-target-headers.hmap -ivfsoverlay /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/all-product-headers.yaml -iquote /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-project-headers.hmap -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Products/Debug-iphonesimulator/ReactNativeNavigation/include -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Private -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Private/ReactNativeNavigation -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/DoubleConversion -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/FBLazyVector -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/FBReactNativeSpec -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/RCTRequired -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/RCTTypeSafety -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-Core -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-RCTText -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-cxxreact -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-jsi -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-jsiexecutor -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-jsinspector -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/ReactCommon -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/ReactNativeNavigation -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/Yoga -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/glog -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/DerivedSources/x86_64 -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/DerivedSources -F/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Products/Debug-iphonesimulator/ReactNativeNavigation -fmodule-map-file=/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/yoga/Yoga.modulemap -include /Users/usernamesupercoders/devel/testapp/ios/Pods/Target\ Support\ Files/ReactNativeNavigation/ReactNativeNavigation-prefix.pch -MMD -MT dependencies -MF /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/UIViewController+MMDrawerController.d --serialize-diagnostics /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/UIViewController+MMDrawerController.dia -c /Users/usernamesupercoders/devel/testapp/node_modules/react-native-navigation/lib/ios/RNNSideMenu/MMDrawerController/UIViewController+MMDrawerController.m -o /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/UIViewController+MMDrawerController.o

CompileC /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/UIViewController+LayoutProtocol.o /Users/usernamesupercoders/devel/testapp/node_modules/react-native-navigation/lib/ios/UIViewController+LayoutProtocol.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target: ReactNativeNavigation)
    cd /Users/usernamesupercoders/devel/testapp/ios/Pods
    export LANG=en_US.US-ASCII
    /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/usernamesupercoders/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/iPhoneSimulator12.1.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=9.0 -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/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Index/DataStore -iquote /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-generated-files.hmap -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-own-target-headers.hmap -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-all-non-framework-target-headers.hmap -ivfsoverlay /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/all-product-headers.yaml -iquote /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/ReactNativeNavigation-project-headers.hmap -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Products/Debug-iphonesimulator/ReactNativeNavigation/include -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Private -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Private/ReactNativeNavigation -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/DoubleConversion -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/FBLazyVector -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/FBReactNativeSpec -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/RCTRequired -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/RCTTypeSafety -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-Core -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-RCTText -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-cxxreact -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-jsi -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-jsiexecutor -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/React-jsinspector -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/ReactCommon -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/ReactNativeNavigation -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/Yoga -I/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/glog -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/DerivedSources/x86_64 -I/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/DerivedSources -F/Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Products/Debug-iphonesimulator/ReactNativeNavigation -fmodule-map-file=/Users/usernamesupercoders/devel/testapp/ios/Pods/Headers/Public/yoga/Yoga.modulemap -include /Users/usernamesupercoders/devel/testapp/ios/Pods/Target\ Support\ Files/ReactNativeNavigation/ReactNativeNavigation-prefix.pch -MMD -MT dependencies -MF /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/UIViewController+LayoutProtocol.d --serialize-diagnostics /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/UIViewController+LayoutProtocol.dia -c /Users/usernamesupercoders/devel/testapp/node_modules/react-native-navigation/lib/ios/UIViewController+LayoutProtocol.m -o /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/UIViewController+LayoutProtocol.o


** BUILD FAILED **


The following build commands failed:
	CompileC /Users/usernamesupercoders/Library/Developer/Xcode/DerivedData/testapp-avbxgfownnecpxcvvhrowzepzeae/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/ReactNativeNavigation.build/Objects-normal/x86_64/UIViewController+RNNOptions.o /Users/usernamesupercoders/devel/testapp/node_modules/react-native-navigation/lib/ios/UIViewController+RNNOptions.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
(1 failure)





</details>

Seems like you haven’t followed the upgrade instruction properly. Use this site to see the diff you need to modify/add.

To your problem, you need to change your Podfile From: pod 'ReactCommon/jscallinvoker', :path => "../node_modules/react-native/ReactCommon"

To: pod 'ReactCommon/callinvoker', :path => "../node_modules/react-native/ReactCommon"

In my case i already have : pod 'ReactCommon/callinvoker', :path => "../node_modules/react-native/ReactCommon" And still have an error :

[!] CocoaPods could not find compatible versions for pod “ReactCommon/callinvoker”: In snapshot (Podfile.lock): ReactCommon/callinvoker (from ../node_modules/react-native/ReactCommon) In Podfile: ReactCommon/callinvoker (from ../node_modules/react-native/ReactCommon) None of your spec sources contain a spec satisfying the dependency: ReactCommon/callinvoker (from …/node_modules/react-native/ReactCommon). You have either:

  • mistyped the name or version.
  • not added the source repo that hosts the Podspec to your Podfile.

The same problem

This manipulations solved my problem. I hope, it will help you too :

 react-native start --reset-cache
 rm -rf node_modules/
 rm -rf package-lock.json 
 cd ios
 pod deintegrate
 cd ..
 rm -rf ios/Podfile.lock 
 npm install
 npm audit fix
 react-native link
 cd ios
 pod install
 cd ..
 react-native run-ios

In RN 0.63.0 you can remove all RN pods from you podfile and just include the following lines inside the target.

config = use_native_modules!
use_react_native!(:path => config["reactNativePath"])

Also this line needs to be added after the platform line:

require_relative '../node_modules/react-native/scripts/react_native_pods'

After this delete the Pods directory, Podfile.lock and the workspace file. Then just pod install.

None of the proposed solutions worked for me.

Finally I think I have fixed it:

I got a new hard disk for my Mac I installed a totally clean build of the very latest OSX Catalina (NOT an upgrade) I reinstalled all of my applications I did a clean install of xcode I did a clean install of Android Studio

Goodness knows what was wrong with my toolchain but a lovely clean build of the latest everything seems to work just fine.

Radical action that’s for sure but what’s the point in trying to diagnose weird errors on an out of date system.

Following @tapz directions worked for me. Delete the podfile folder, podfile.lock and change podfile to

require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules'
require_relative '../node_modules/react-native/scripts/react_native_pods'

platform :ios, '10.0'

target 'YOUR_APP' do
  config = use_native_modules!
  use_react_native!(:path => config["reactNativePath"])

  target 'YOUR_APPTests' do
    inherit! :complete
    # Pods for testing
  end

  # Enables Flipper.
  #
  # Note that if you have use_frameworks! enabled, Flipper will not work and
  # you should disable these next few lines.
  use_flipper!
  post_install do |installer|
    flipper_post_install(installer)
  end
end

target 'YOUR_APP-tvOS' do
  # Pods for YOUR_APP-tvOS

  target 'YOUR_APP-tvOSTests' do
    inherit! :search_paths
    # Pods for testing
  end
end

then pod install and get back to business

Following this guide, depending on your version, for me it was only modifying the Podfile and removing the pods folder as well as the Podfile.lock and then pod install, and it built successfully. https://react-native-community.github.io/upgrade-helper/?from=0.62.2&to=0.63.0

I have the sample problem on the 0.63.0. But The project is work find when I revert my project to previous 0.62.0

Seems like you haven’t followed the upgrade instruction properly. Use this site to see the diff you need to modify/add.

To your problem, you need to change your Podfile From: pod 'ReactCommon/jscallinvoker', :path => "../node_modules/react-native/ReactCommon"

To: pod 'ReactCommon/callinvoker', :path => "../node_modules/react-native/ReactCommon"

This is working fine.

bootrino should remove his post with his log it made me miss the right answer!

Yes I still have the same problem. tried all the solutions here