在 iOS React 本机项目上出现奇怪的错误
Getting weird error on iOS react native project
我正在使用 React Native,我正在尝试启动我的 iOS 应用程序。它有 React native firebase SDK。请帮忙。我已经在应用程序委托中初始化了 firebase
您的 firebase
模块似乎没有正确安装。按照此 link 安装配置您的 firebase
: Link
请验证安装步骤
# Install & setup the app module
yarn add @react-native-firebase/app
# Install the messaging module
yarn add @react-native-firebase/messaging
#Update pods
pod install --repo-update
#Insert this to Podfile
$FirebaseSDKVersion = '6.0.0'
#Install changes
pod install --repo-update
# If you're developing your app using iOS, run this command
cd ios/ && pod install
我正在使用 React Native,我正在尝试启动我的 iOS 应用程序。它有 React native firebase SDK。请帮忙。我已经在应用程序委托中初始化了 firebase
您的 firebase
模块似乎没有正确安装。按照此 link 安装配置您的 firebase
: Link
请验证安装步骤
# Install & setup the app module
yarn add @react-native-firebase/app
# Install the messaging module
yarn add @react-native-firebase/messaging
#Update pods
pod install --repo-update
#Insert this to Podfile
$FirebaseSDKVersion = '6.0.0'
#Install changes
pod install --repo-update
# If you're developing your app using iOS, run this command
cd ios/ && pod install