microsoft / appcenter-sdk-react-native

Development repository for the App Center SDK for React Native
Other
416 stars 137 forks source link

Facing problem in react-native link - bundling failed: ambiguous resolution #315

Closed kashifaliquazi closed 6 years ago

kashifaliquazi commented 6 years ago

Facing problem in react-native link

We are integrating App center to our app after half of the development is done, we have not integrated cocoa pod till now we used npm to get the dependency, As recommended by App center we are using the cocoa pad for Particularly App center, But After liking when ever I try to run the app npm packager gives following error.

npm packager error

Details

SDK version 1.5.1 OS version iOS 11

Environment: OS: macOS High Sierra 10.13.1 Node: 8.10.0 Yarn: Not Found npm: 5.6.0 Watchman: Not Found Xcode: Xcode 9.2 Build version 9C32c Android Studio: Not Found

Packages: (wanted => installed) react: 16.0.0 => 16.0.0 react-native: 0.51.0 => 0.51.0

pod --version 1.4.0

pod file linked librery

bmourat commented 6 years ago

Hi @kashifaliquazi It seems like react-native is added twice, first time via pod and second time as a node module. You should choose one way of adding react and delete the other. The default way is adding react as a node module, did you manually added it as a pod dependancy?

jstheoriginal commented 6 years ago

I also have this same issue. This is all that's in my podfile:

# Uncomment the next line to define a global platform for your project
# platform :ios, '10.0'

target 'BBLinksRN' do
  # Uncomment the next line if you're using Swift or would like to use dynamic frameworks
  use_frameworks!

  # Pods for BBLinksRN
  pod 'AppCenter/Crashes', '~> 1.6.1'
  pod 'AppCenter/Analytics', '~> 1.6.1'
  pod 'AppCenterReactNativeShared', '~> 1.5.1'

  platform :ios, '10.0'

  pod 'CodePush', :path => '../node_modules/react-native-code-push'

end

So One of these dependencies is installing React it seems.

bmourat commented 6 years ago

@jstheoriginal what happens when you delete Pods folder and rerun pod install?

jstheoriginal commented 6 years ago

@bmourat Thanks. It does seem to load on Android fine after doing that, despite many warnings in metro bundler. Maybe it's caused by using TypeScript with the experimental decorator support. ¯\_(ツ)_/¯. My app is just for Android for now, so I'll probably just delete the Pods folder for now.

jest-haste-map: @providesModule naming collision:
  Duplicate module name: String.prototype.es6
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/packager/react-packager/src/DependencyResolver/polyfills/String.prototype.es6.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/polyfills/String.prototype.es6.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: console
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/packager/react-packager/src/DependencyResolver/polyfills/console.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/polyfills/console.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: Object.es6
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/packager/react-packager/src/DependencyResolver/polyfills/polyfills.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/polyfills/Object.es6.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: Array.prototype.es6
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/packager/react-packager/src/DependencyResolver/polyfills/Array.prototype.es6.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/polyfills/Array.prototype.es6.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: PushNotificationIOS
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/PushNotificationIOS/PushNotificationIOS.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/PushNotificationIOS/PushNotificationIOS.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: react-native
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/package.json collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/package.json

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: PanResponder
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/vendor/react/browser/eventPlugins/PanResponder.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Interaction/PanResponder.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: Easing
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Animated/Easing.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Animated/src/Easing.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: Animated
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Animated/Animated.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Animated/src/Animated.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: SpringConfig
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Animated/SpringConfig.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Animated/src/SpringConfig.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: Set
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/vendor/core/Set.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/vendor/core/Set.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: mergeHelpers
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/vendor/core/mergeHelpers.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/vendor/core/mergeHelpers.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: Map
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/vendor/core/Map.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/vendor/core/Map.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: getObjectValues
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/vendor/core/getObjectValues.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/vendor/core/getObjectValues.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: _shouldPolyfillES6Collection
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/vendor/core/_shouldPolyfillES6Collection.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/vendor/core/_shouldPolyfillES6Collection.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: Touchable
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/vendor/react_contrib/interactions/Touchable/Touchable.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Components/Touchable/Touchable.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: StaticContainer.react
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/vendor/react_contrib/StaticContainer/StaticContainer.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Components/StaticContainer.react.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: BoundingDimensions
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/vendor/react_contrib/pooledClasses/BoundingDimensions.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Components/Touchable/BoundingDimensions.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: Position
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/vendor/react_contrib/pooledClasses/Position.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Components/Touchable/Position.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: DocumentSelectionState
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/vendor/document/selection/DocumentSelectionState.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/vendor/document/selection/DocumentSelectionState.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: clamp
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/vendor/react/core/clamp.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Utilities/clamp.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: TouchHistoryMath
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/vendor/react/browser/eventPlugins/TouchHistoryMath.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Renderer/shims/TouchHistoryMath.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: EmitterSubscription
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/vendor/emitter/EmitterSubscription.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/vendor/emitter/EmitterSubscription.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: EventSubscriptionVendor
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/vendor/emitter/EventSubscriptionVendor.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/vendor/emitter/EventSubscriptionVendor.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: EventValidator
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/vendor/emitter/EventValidator.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/vendor/emitter/EventValidator.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: mixInEventEmitter
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/vendor/emitter/mixInEventEmitter.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/vendor/emitter/mixInEventEmitter.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: EventHolder
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/vendor/emitter/EventHolder.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/vendor/emitter/EventHolder.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: EventEmitter
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/vendor/emitter/EventEmitter.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/vendor/emitter/EventEmitter.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: EventSubscription
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/vendor/emitter/EventSubscription.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/vendor/emitter/EventSubscription.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: EventEmitterWithHolding
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/vendor/emitter/EventEmitterWithHolding.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/vendor/emitter/EventEmitterWithHolding.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: mergeInto
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/vendor/core/mergeInto.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/vendor/core/mergeInto.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: guid
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/vendor/core/guid.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/vendor/core/guid.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: merge
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/vendor/core/merge.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/vendor/core/merge.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: isEmpty
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/vendor/core/isEmpty.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/vendor/core/isEmpty.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: toIterator
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/vendor/core/toIterator.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/vendor/core/toIterator.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: InteractionMixin
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Interaction/InteractionMixin.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Interaction/InteractionMixin.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: ReactNativeStyleAttributes
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/ReactNative/ReactNativeStyleAttributes.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Components/View/ReactNativeStyleAttributes.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: ReactNativeViewAttributes
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/ReactNative/ReactNativeViewAttributes.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Components/View/ReactNativeViewAttributes.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: React
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/ReactNative/React.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/react-native/React.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: createReactNativeComponentClass
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/ReactNative/createReactNativeComponentClass.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Renderer/shims/createReactNativeComponentClass.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: ReactNative
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/ReactNative/ReactNative.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Renderer/shims/ReactNative.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: Text
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Text/Text.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Text/Text.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: Modal
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Modal/Modal.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Modal/Modal.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: InteractionManager
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Interaction/InteractionManager.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Interaction/InteractionManager.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: ScrollResponder
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Components/ScrollResponder.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Components/ScrollResponder.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: StaticRenderer
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Components/StaticRenderer.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Components/StaticRenderer.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: Subscribable
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Components/Subscribable.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Components/Subscribable.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: setupDevtools
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Devtools/setupDevtools.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Core/Devtools/setupDevtools.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: CameraRoll
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/CameraRoll/CameraRoll.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/CameraRoll/CameraRoll.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: Geolocation
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Geolocation/Geolocation.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Geolocation/Geolocation.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: Sample
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Sample/Sample.ios.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Sample/Sample.ios.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: Sample
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Sample/Sample.android.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Sample/Sample.android.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: RCTDeviceEventEmitter
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Device/RCTDeviceEventEmitter.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/EventEmitter/RCTDeviceEventEmitter.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: TextStylePropTypes
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Text/TextStylePropTypes.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Text/TextStylePropTypes.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: TextUpdateTest
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Text/TextUpdateTest.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Text/TextUpdateTest.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: TouchableHighlight
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Components/Touchable/TouchableHighlight.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Components/Touchable/TouchableHighlight.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: TouchableOpacity
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Components/Touchable/TouchableOpacity.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Components/Touchable/TouchableOpacity.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: TabBarItemIOS
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Components/TabBarIOS/TabBarItemIOS.android.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Components/TabBarIOS/TabBarItemIOS.android.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: TabBarIOS
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Components/TabBarIOS/TabBarIOS.android.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Components/TabBarIOS/TabBarIOS.android.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: SegmentedControlIOS
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Components/SegmentedControlIOS/SegmentedControlIOS.ios.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Components/SegmentedControlIOS/SegmentedControlIOS.ios.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: UnimplementedView
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Components/UnimplementedViews/UnimplementedView.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Components/UnimplementedViews/UnimplementedView.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: ViewStylePropTypes
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Components/View/ViewStylePropTypes.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Components/View/ViewStylePropTypes.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: View
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Components/View/View.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Components/View/View.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: ProgressViewIOS
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Components/ProgressViewIOS/ProgressViewIOS.android.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Components/ProgressViewIOS/ProgressViewIOS.android.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: ProgressBarAndroid
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Components/ProgressBarAndroid/ProgressBarAndroid.ios.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Components/ProgressBarAndroid/ProgressBarAndroid.ios.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: StatusBarIOS
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Components/StatusBar/StatusBarIOS.ios.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Components/StatusBar/StatusBarIOS.ios.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: TextInputState
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Components/TextInput/TextInputState.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Components/TextInput/TextInputState.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: TextInput
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Components/TextInput/TextInput.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Components/TextInput/TextInput.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: DatePickerIOS
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Components/DatePicker/DatePickerIOS.ios.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Components/DatePicker/DatePickerIOS.ios.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: WebView
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Components/WebView/WebView.android.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Components/WebView/WebView.android.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: NavigatorIOS
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Components/Navigation/NavigatorIOS.ios.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Components/Navigation/NavigatorIOS.ios.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: ensurePositiveDelayProps
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Components/Touchable/ensurePositiveDelayProps.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Components/Touchable/ensurePositiveDelayProps.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: TouchableWithoutFeedback
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Components/Touchable/TouchableWithoutFeedback.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Components/Touchable/TouchableWithoutFeedback.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: TouchableBounce
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Components/Touchable/TouchableBounce.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Components/Touchable/TouchableBounce.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: TouchableNativeFeedback
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Components/Touchable/TouchableNativeFeedback.ios.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Components/Touchable/TouchableNativeFeedback.ios.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: ensureComponentIsNative
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Components/Touchable/ensureComponentIsNative.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Components/Touchable/ensureComponentIsNative.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: PerformanceLogger
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Utilities/PerformanceLogger.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Utilities/PerformanceLogger.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: mergeFast
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Utilities/mergeFast.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Utilities/mergeFast.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: RCTLog
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Utilities/RCTLog.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Utilities/RCTLog.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: mapWithSeparator
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Utilities/mapWithSeparator.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Utilities/mapWithSeparator.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: groupByEveryN
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Utilities/groupByEveryN.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Utilities/groupByEveryN.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: stringifySafe
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Utilities/stringifySafe.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Utilities/stringifySafe.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: logError
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Utilities/logError.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Utilities/logError.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: MessageQueue
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Utilities/MessageQueue.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/BatchedBridge/MessageQueue.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: ErrorUtils
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Utilities/ErrorUtils.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/vendor/core/ErrorUtils.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: buildStyleInterpolator
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Utilities/buildStyleInterpolator.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Utilities/buildStyleInterpolator.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: fetch
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Fetch/fetch.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Network/fetch.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: ScrollView
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Components/ScrollView/ScrollView.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Components/ScrollView/ScrollView.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: AlertIOS
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Utilities/AlertIOS.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Alert/AlertIOS.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: dismissKeyboard
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Utilities/dismissKeyboard.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Utilities/dismissKeyboard.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: truncate
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Utilities/truncate.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Utilities/truncate.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: deepFreezeAndThrowOnMutationInDev
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Utilities/deepFreezeAndThrowOnMutationInDev.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Utilities/deepFreezeAndThrowOnMutationInDev.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: createStrictShapeTypeChecker
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Utilities/createStrictShapeTypeChecker.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Utilities/createStrictShapeTypeChecker.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: Dimensions
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Utilities/Dimensions.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Utilities/Dimensions.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: PixelRatio
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Utilities/PixelRatio.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Utilities/PixelRatio.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: mergeIntoFast
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Utilities/mergeIntoFast.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Utilities/mergeIntoFast.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: matricesDiffer
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Utilities/differ/matricesDiffer.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Utilities/differ/matricesDiffer.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: insetsDiffer
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Utilities/differ/insetsDiffer.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Utilities/differ/insetsDiffer.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: sizesDiffer
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Utilities/differ/sizesDiffer.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Utilities/differ/sizesDiffer.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: deepDiffer
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Utilities/differ/deepDiffer.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Utilities/differ/deepDiffer.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: pointsDiffer
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Utilities/differ/pointsDiffer.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Utilities/differ/pointsDiffer.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: ExceptionsManager
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/JavaScriptAppEngine/Initialization/ExceptionsManager.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Core/ExceptionsManager.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: parseErrorStack
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/JavaScriptAppEngine/Initialization/parseErrorStack.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Core/Devtools/parseErrorStack.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: JSTimers
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/JavaScriptAppEngine/System/JSTimers/JSTimers.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Core/Timers/JSTimers.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: Platform
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Utilities/Platform.ios.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Utilities/Platform.ios.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: MatrixMath
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Utilities/MatrixMath.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Utilities/MatrixMath.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: ListViewDataSource
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/CustomComponents/ListView/ListViewDataSource.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Lists/ListView/ListViewDataSource.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: ListView
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/CustomComponents/ListView/ListView.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Lists/ListView/ListView.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: AssetRegistry
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Image/AssetRegistry.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Image/AssetRegistry.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: Image
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Image/Image.ios.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Image/Image.ios.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: LayoutAnimation
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/LayoutAnimation/LayoutAnimation.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/LayoutAnimation/LayoutAnimation.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: FormData
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Network/FormData.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Network/FormData.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: bezier
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Animation/bezier.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Animated/src/bezier.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: ImageResizeMode
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Image/ImageResizeMode.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Image/ImageResizeMode.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: ImageStylePropTypes
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Image/ImageStylePropTypes.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Image/ImageStylePropTypes.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: resolveAssetSource
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Image/resolveAssetSource.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Image/resolveAssetSource.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: ImagePickerIOS
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Image/ImagePickerIOS.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/CameraRoll/ImagePickerIOS.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: ImageSource
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Image/ImageSource.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Image/ImageSource.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: ActionSheetIOS
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/ActionSheetIOS/ActionSheetIOS.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/ActionSheetIOS/ActionSheetIOS.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: Promise
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Promise.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Promise.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: NativeModules
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/BatchedBridge/BatchedBridgedModules/NativeModules.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/BatchedBridge/NativeModules.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: RCTEventEmitter
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/BatchedBridge/BatchedBridgedModules/RCTEventEmitter.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/EventEmitter/RCTEventEmitter.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: RCTAlertManager
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/BatchedBridge/BatchedBridgedModules/RCTAlertManager.ios.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Alert/RCTAlertManager.ios.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: BatchedBridge
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/BatchedBridge/BatchedBridge.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/BatchedBridge/BatchedBridge.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: NetInfo
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Network/NetInfo.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Network/NetInfo.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: StyleSheetValidation
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/StyleSheet/StyleSheetValidation.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/StyleSheet/StyleSheetValidation.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: TransformPropTypes
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/StyleSheet/TransformPropTypes.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/StyleSheet/TransformPropTypes.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: StyleSheetPropType
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/StyleSheet/StyleSheetPropType.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/StyleSheet/StyleSheetPropType.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: StyleSheet
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/StyleSheet/StyleSheet.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/StyleSheet/StyleSheet.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: flattenStyle
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/StyleSheet/flattenStyle.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/StyleSheet/flattenStyle.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: EdgeInsetsPropType
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/StyleSheet/EdgeInsetsPropType.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/StyleSheet/EdgeInsetsPropType.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: PointPropType
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/StyleSheet/PointPropType.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/StyleSheet/PointPropType.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: LayoutPropTypes
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/StyleSheet/LayoutPropTypes.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/StyleSheet/LayoutPropTypes.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: ARTSerializablePath
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/ART/ARTSerializablePath.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/ART/ARTSerializablePath.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: ReactNativeART
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/ART/ReactNativeART.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/ART/ReactNativeART.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: StyleInspector
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Inspector/StyleInspector.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Inspector/StyleInspector.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: InspectorPanel
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Inspector/InspectorPanel.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Inspector/InspectorPanel.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: BorderBox
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Inspector/BorderBox.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Inspector/BorderBox.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: resolveBoxStyle
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Inspector/resolveBoxStyle.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Inspector/resolveBoxStyle.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: ElementProperties
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Inspector/ElementProperties.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Inspector/ElementProperties.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: RCTNativeAppEventEmitter
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/NativeApp/RCTNativeAppEventEmitter.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/EventEmitter/RCTNativeAppEventEmitter.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: PickerIOS
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Picker/PickerIOS.android.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Components/Picker/PickerIOS.android.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: queryLayoutByID
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/RKBackendNode/queryLayoutByID.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/ReactNative/queryLayoutByID.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: BoxInspector
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Inspector/BoxInspector.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Inspector/BoxInspector.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: InspectorOverlay
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Inspector/InspectorOverlay.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Inspector/InspectorOverlay.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: Inspector
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Inspector/Inspector.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Inspector/Inspector.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: ElementBox
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Inspector/ElementBox.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Inspector/ElementBox.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: PerformanceOverlay
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Inspector/PerformanceOverlay.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Inspector/PerformanceOverlay.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: verifyPropTypes
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/ReactIOS/verifyPropTypes.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/ReactNative/verifyPropTypes.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: requireNativeComponent
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/ReactIOS/requireNativeComponent.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/ReactNative/requireNativeComponent.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: NativeMethodsMixin
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/ReactIOS/NativeMethodsMixin.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Renderer/shims/NativeMethodsMixin.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: AppRegistry
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/AppRegistry/AppRegistry.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/ReactNative/AppRegistry.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: VibrationIOS
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Vibration/VibrationIOS.ios.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Vibration/VibrationIOS.ios.js

This warning is caused by a @providesModule declaration with the same name across two different files.
jest-haste-map: @providesModule naming collision:
  Duplicate module name: Settings
  Paths: /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/ios/Pods/React/Libraries/Settings/Settings.ios.js collides with /Users/justin/Dropbox/Programming/ReactNative/MyApps/bb_links_rn/node_modules/react-native/Libraries/Settings/Settings.ios.js

This warning is caused by a @providesModule declaration with the same name across two different files.
guperrot commented 6 years ago

Hey!

We haven’t heard from you in a while, so I am going to go ahead and close this ticket. Should you still have any questions, you can write a message here & that will reopen the ticket; or if you prefer you can create a new ticket. Please don’t hesitate to contact us again.

Thanks for using App Center!

avinashwigroup commented 6 years ago

hello, I'm getting the same issue.

what would be a resolution for this ?

Installing AppCenter (1.6.1) Installing AppCenterReactNativeShared (1.5.1) Installing DoubleConversion (1.1.5) Installing Folly (2016.09.26.00) Installing Google-Maps-iOS-Utils (2.1.0) Installing GoogleMaps (2.5.0) Using RNVectorIcons (4.6.0) Using React (0.55.4) Using ReactNativePermissions (1.1.1) Installing boost-for-react-native (1.63.0) Installing glog (0.3.4) Using react-native-camera (1.1.4) Using react-native-contacts (2.2.0) Using react-native-google-maps (0.21.0) Using react-native-maps (0.21.0) Using yoga (0.55.4.React)

The above fails with duplicate uuids being generated:

[!] [Xcodeproj] Generated duplicate UUIDs:

XCBuildConfiguration -- XCBuildConfiguration -- PBXBuildFile -- PBXBuildFile -- PBXBuildFile -- PBXBuildFile -- PBXBuildFile -- PBXBuildFile -- PBXBuildFile -- PBXBuildFile -- PBXBuildFile -- PBXBuildFile --

guperrot commented 6 years ago

Hi, are you building locally or using app center build? Can you share full build logs as a zip or similar? Can you describe what you did to integrate our sdk?

dhei commented 6 years ago

Hey @avinashwigroup,

Thanks for getting in touch. I wonder if you still have this issue? We haven’t heard from you in a while, so I am going to go ahead and close this issue. Should you still have any questions, you can write a message here. Please don’t hesitate to contact us again.

Thanks for using App Center.

tamirla commented 6 years ago

hi @guperrot @dhei I also see this problem. I have AppCenter in my Podfile and NOT React, however, when running pod install I see that React folder is created under Pods folder. I do have however some other definitions in my Podfile so cannot be sure the reason is AppCenter, but since I found this issue here I suppose it is...

From reading the comments here I still didn't understand -

does AppCenter pod depends on React pod ?

If yes, how can I eliminate this error, assuming I want to use React node module and not pod which is the default as mentioned above.

tamirla commented 6 years ago

@guperrot @dhei sorry, I commented out now another pod from Podfile and don't see anymore React under Pods folder, so I guess in my case it was not related to App Center :)

jeffreyrajanofficial commented 6 years ago

@tamirla Have you found any solution for it? I'm facing the same issue you are facing now

tamirla commented 6 years ago

@jeffreyrajanofficial I believe it was this solution that solved it for me eventually:

https://github.com/invertase/react-native-firebase/issues/414#issuecomment-331128610

at least I have it now in my podfile :)

ElektrojungeAtWork commented 6 years ago

Hey @jeffreyrajanofficial,

If the suggestion by @tamirla does not work for you, please open a new issue here on GH and provide all information that the issue template suggests and as well as some more context. This will help us a lot in helping you.