React Native Firebase Build Ошибка не исправлена - PullRequest
0 голосов
/ 17 октября 2018

После выполнения этого урока: Ошибка: основной модуль RNFirebase не был найден на iOS , я все еще продолжаю получать эти ошибки:

enter image description here

enter image description here

Есть что-то, что я пропустил?PS Я недавно обновился до MacOS Mojave, и у меня сейчас установлен XCode 10, и я также использую последнюю версию реакции-нативную, которая является 0.57.1.Вот список моих зависимостей для npm и pod:

npm:

"dependencies": {
"@babel/core": "^7.1.2",
"@babel/runtime": "7.0.0-beta.55",
"adm-zip": "^0.4.11",
"ajv": "^6.5.4",
"eslint": "^5.6.1",
"eslint-config-standard": "^12.0.0",
"plist": "^3.0.1",
"react": "16.5.0",
"react-native": "0.57.1",
"react-native-deck-swiper": "^1.5.22",
"react-native-fbsdk": "^0.8.0",
"react-native-firebase": "^5.0.0",
"react-native-responsive-dimensions": "^2.0.1",
"react-native-splash-screen": "^3.1.1",
"react-navigation": "^2.17.0",
"react-redux": "^5.0.7",
"redux": "^4.0.0",
"redux-logger": "^3.0.6",
"redux-persist": "^5.10.0",
"redux-thunk": "^2.3.0",
"xcode": "^1.0.0"

}

Podfile внутри папки ios:

platform :ios, '9.0'

 target 'BonggaKaDay' 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/Firestore'
 pod 'React', :path => '../node_modules/react-native'
 pod 'yoga', :path => '../node_modules/react-native/ReactCommon/yoga'
 pod 'react-native-fbsdk', :path => '../node_modules/react-native-fbsdk'

конец

...