Я только что обновил реактивную (0.57.3) и реактивную (firebase) базу (5.1.0-rc1) до последних версий, и я получаю эти ошибки при сборке:
/ Volumes / EamonWD / snag / Reaction-native-firebase-starter / node_modules / реагировать-native-firebase / ios / RNFirebase / functions / RNFirebaseFunctions.m: 26: 45: Не известен метод класса для селектора 'functionsForApp: region:'
Вышеупомянутая ошибка происходит в двух местах, я также получаю:
/ Volumes / EamonWD / snag / реактивный-native-firebase-starter / node_modules / реагирующий-собственный-firebase / ios / RNFirebase / functions / RNFirebaseFunctions.m: 69: 16: нет видимого @interface для 'FIRFunctions' объявляет селектор 'useFunctionsEmulatorOrigin:'
Я использую Cocoapods
, яУгадай, может, что-то не полностью обновилось?или ссылка?
Это мой Podfile
:
# Uncomment the next line to define a global platform for your project
platform :ios, '9.0'
target 'snagit' do
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks
# use_frameworks!
# Pods for snagit
# Required by RNFirebase
pod 'Firebase/Core', '~> 5.3.0'
# [OPTIONAL PODS] - comment out pods for firebase products you won't be using.
pod 'Firebase/AdMob', '~> 5.3.0'
pod 'Firebase/Auth', '~> 5.3.0'
pod 'Firebase/Crash', '~> 5.3.0'
pod 'Firebase/Database', '~> 5.3.0'
pod 'Firebase/Functions', '~> 5.3.0'
pod 'Firebase/DynamicLinks', '~> 5.3.0'
pod 'Firebase/Firestore', '~> 5.3.0'
# pod 'Firebase/Invites', '~> 5.3.0'
pod 'Firebase/Messaging', '~> 5.3.0'
pod 'Firebase/RemoteConfig', '~> 5.3.0'
pod 'Firebase/Storage', '~> 5.3.0'
pod 'Firebase/Performance', '~> 5.3.0'
pod 'Fabric', '~> 1.7.5'
pod 'Crashlytics', '~> 3.10.4'
pod 'FacebookSDK'
pod 'RNVectorIcons', :path => '../node_modules/react-native-vector-icons'
pod 'react-native-camera', :path => '../node_modules/react-native-camera'
# Fixes required for pod specs to work with rn 0.42
react_native_path = "../node_modules/react-native"
pod "yoga", :path => "#{react_native_path}/ReactCommon/yoga"
pod "React", :path => react_native_path, :subspecs => [
'Core',
'RCTActionSheet',
'RCTAnimation',
'RCTGeolocation',
'RCTImage',
'RCTLinkingIOS',
'RCTNetwork',
'RCTSettings',
'RCTText',
'RCTVibration',
'RCTWebSocket',
'DevSupport'
]
pod 'RNGoogleSignin', :path => '../node_modules/react-native-google-signin'
pod 'RNFS', :path => '../node_modules/react-native-fs'
end
Верна ли версия?(5.3.0).Любая помощь будет отличной, спасибо.