Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
214 views
in Technique[技术] by (71.8m points)

ios - FCM - Cannot find type 'MessagingRemoteMessage' in scope

This is the code I use in my AppDelegate in order to receive messages in iOS:

extension AppDelegate : MessagingDelegate {
  // [START refresh_token]
  func messaging(_ messaging: Messaging, didReceiveRegistrationToken fcmToken: String?) {
    print("Firebase registration token: (fcmToken)")
    
    let dataDict:[String: String?] = ["token": fcmToken]
    NotificationCenter.default.post(name: Notification.Name("FCMToken"), object: nil, userInfo: dataDict)
    // Note: This callback is fired at each app startup and whenever a new token is generated.
  }

  func messaging(_ messaging: Messaging, didReceive remoteMessage: MessagingRemoteMessage) {
    print("Received data message: (remoteMessage.appData)")
  }
}

I have recently started getting this error message after compiling:

Cannot find type 'MessagingRemoteMessage' in scope

which makes the build fail.

What should I do in order to fix this?

question from:https://stackoverflow.com/questions/66064266/fcm-cannot-find-type-messagingremotemessage-in-scope

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

MessagingRemoteMessage was removed from Firebase in the 7.0.0 release.

More info at Update deprecated Firebase functions in Swift


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...