无法在Objective-c AppDelegate.h中导入FirebaseMessaging

时间:2018-07-11 07:47:02

标签: ios objective-c firebase push-notification firebase-authentication

每当我写 @import FirebaseMessaging; 时说-

未找到模块“ FirebaseMessaging”

我所做的事情-最初,我只用 Firebase / Core 安装吊舱,但后来我意识到也需要 Firebase / Messaging 。 然后我在Pod文件中写了 pod'Firebase / Messaging',然后再次安装Pod。

pod文件夹包含名为Firebase Messaging的文件夹,但是当我导入它时,它说没有找到模块。Here is the screenshot of the error

1 个答案:

答案 0 :(得分:1)

您无需根据documentation在最新的Firebase SDK中分别导入FirebaseMessaging

  

您需要将Firebase初始化代码添加到您的应用程序。导入Firebase模块并配置共享实例,如下所示:

     
      
  1. 在您的UIApplicationDelegate中导入Firebase模块:
  2.   
@import Firebase;
  
      
  1. 通常在应用程序的application:didFinishLaunchingWithOptions:方法中配置FirebaseApp共享实例:
  2.   
// Use Firebase library to configure APIs
[FIRApp configure];