Следующие ошибки выдаются, когда я пытаюсь запустить свой тестовый код
RNFirebase core module was not found natively on iOS, ensure you have correctly included the RNFirebase pod in your projects `Podfile` and have run `pod install`.
See http://invertase.link/ios for the ios setup guide.
22 | import {createDrawerNavigator} from 'react-navigation';
23 | import Profile from './Profile';
> 24 | import {roomID,teamName,events} from './Home';
| ^
25 | import { ChatManager, TokenProvider } from '@pusher/chatkit-client';
26 | import {LocalHost} from './Auth';
27 |
Я пытался добавить путь в подфайл, но продолжаю получать те же ошибки.Мой подфайл выглядит следующим образом:
# Uncomment the next line to define a global platform for your project
platform :ios, '12.0'
# Required by RNFirebase
target 'SCA' do
# Uncomment the next line if you're using Swift or would like to use
dynamic frameworks
#use_frameworks!
pod 'Firebase/Core'
pod 'Firebase/Auth'
pod 'Firebase/Database'
pod 'Firebase/Firestore', '~> 5.3.0'
#pod 'RNFirebase', :path => '../node_modules/react-native-firebase/ios/RNFirebase.podspec'
# Pods for SCA
target 'SCATests' do
inherit! :search_paths
# Pods for testing
end
end
target 'SCA-tvOS' do
# Uncomment the next line if you're using Swift or would like to use dynamic frameworks
# use_frameworks!
# Pods for SCA-tvOS
target 'SCA-tvOSTests' do
inherit! :search_paths
# Pods for testing
end
end
Я использую реактивную версию 0.55.4. Мне также интересно, нужна ли мне учетная запись разработчика Apple для решения этой проблемы?