LoginSignup
0
1

More than 3 years have passed since last update.

SwiftUI2 Firebase Phone 認証the uiapplicationdelegate must handle remote notification for phone number authentication to work.

Posted at

FirebaseのPhone認証で

the UIapplicationdelegate must handle remote notification for phone number authentication to work
が出たdelegateに
@main

func application(_ application: UIApplication,
                 didReceiveRemoteNotification notification: [AnyHashable : Any],
                 fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
    if Auth.auth().canHandleNotification(notification) {
        completionHandler(.noData)
        return
    }
    // This notification is not auth related, developer should handle it.
    //handleNotification(notification)
}

を入れればOK

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1