Кто-нибудь знает, что означает это исключение и как его исправить?
Exception - unrecognized selector sent to instance was thrown while invoking addNetworkingHandler on target BlobMdule with params ()
![screenshot](https://i.stack.imgur.com/524b2.png)
Оно появилось после того, как ядобавлен React в Podfile из-за новой версии response-native-firebase.Нужно ли сначала «отсоединять» React от проекта XCode, добавить React в Podfile, а затем запустить pod install
?Я не нахожу в Интернете ни одного учебного пособия или документа, которые бы давали советы о том, как решить проблему.
Спасибо за помощь: D
Мой подфайл:
# Uncomment the next line to define a global platform for your project
platform :ios, '9.0'
target 'DasHGR' do
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks
# use_frameworks!
# Pods for DasHGR
# Your 'node_modules' directory is probably in the root of your project,
# but if not, adjust the `:path` accordingly
pod 'React', :path => '../node_modules/react-native', :subspecs => [
'Core',
'CxxBridge', # Include this for RN >= 0.47
'DevSupport', # Include this to enable In-App Devmenu if RN >= 0.43
# the following ones are the ones taken from "Libraries" in Xcode:
'RCTAnimation',
'RCTActionSheet',
'RCTBlob',
'RCTGeolocation',
'RCTImage',
'RCTLinkingIOS',
'RCTNetwork',
'RCTSettings',
'RCTText',
'RCTVibration',
'RCTWebSocket'
]
# Explicitly include Yoga if you are using RN >= 0.42.0
pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
# Third party deps podspec link
pod 'DoubleConversion', :podspec => '../node_modules/react-native/third-party-podspecs/DoubleConversion.podspec'
pod 'glog', :podspec => '../node_modules/react-native/third-party-podspecs/glog.podspec'
pod 'Folly', :podspec => '../node_modules/react-native/third-party-podspecs/Folly.podspec'
pod 'RNFS', :path => '../node_modules/react-native-fs'
target 'DasHGRTests' do
inherit! :search_paths
# Pods for testing
end
# Required by RNFirebase
pod 'Firebase/Core', '~> 5.9.0'
pod 'Firebase/Messaging', '~> 5.9.0'
pod 'Fabric', '~> 1.7.11'
pod 'Crashlytics', '~> 3.10.7'
# pod 'Firebase/Performance', '~> 5.9.0'
# The following is needed to ensure the "archive" step works in XCode.
# It removes React from the Pods project, as it is already included in the main project.
post_install do |installer|
installer.pods_project.targets.each do |target|
if target.name == "React"
target.remove_from_project
end
end
end
end
target 'DasHGR-tvOS' do
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks
# use_frameworks!
# Pods for DasHGR-tvOS
target 'DasHGR-tvOSTests' do
inherit! :search_paths
# Pods for testing
end
end