У меня есть собственный реактивный проект, и я хочу использовать реактивный собственный firebase, я просто следую всем установочным документам , чтобы настроить его в IOS, но каждый раз, когда я собираю проект, я получаю эту ошибку
Файл 'RNFirebaseUtil.h' не найден
по этому пути
/ Volumes / App / node_modules / Reaction-native-firebase/ios/RNFirebase/functions/RNFirebaseFunctions.m
в XCode
Так какя могу решить эту проблему?
"dependencies": {
"firebase-admin": "^8.1.0",
"firebase-functions": "^3.0.1",
"react": "16.8.6",
"react-native": "0.59.8",
"react-native-firebase": "5.3.1",
}
Podfile
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'App' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for App
pod 'RNFirebase', :path => '../node_modules/react-native-firebase/ios'
# Required by RNFirebase
pod 'Firebase/Core', '~> 6.5.0'
# # [OPTIONAL PODS] - comment out pods for firebase products you won't be using.
pod 'Firebase/Auth', '~> 6.5.0'
pod 'Firebase/Database', '~> 6.5.0'
pod 'Firebase/Functions', '~> 6.5.0'
pod 'Firebase/Storage', '~> 6.5.0'
target 'AppTests' do
inherit! :search_paths
# Pods for testing
end
end
target 'App-tvOS' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for App-tvOS
target 'App-tvOSTests' do
inherit! :search_paths
# Pods for testing
end
post_install do |installer|
rnfirebase = installer.pods_project.targets.find { |target| target.name == 'RNFirebase' }
rnfirebase.build_configurations.each do |config|
config.build_settings['HEADER_SEARCH_PATHS'] = '$(inherited) Pods/Headers/Public/**'
end
end
end