aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--iosApp/iosApp/AppDelegate.swift8
1 files changed, 8 insertions, 0 deletions
diff --git a/iosApp/iosApp/AppDelegate.swift b/iosApp/iosApp/AppDelegate.swift
index 4233910..72e3e92 100644
--- a/iosApp/iosApp/AppDelegate.swift
+++ b/iosApp/iosApp/AppDelegate.swift
@@ -39,6 +39,14 @@ class AppDelegate: NSObject, UIApplicationDelegate {
print(userInfo)
return UIBackgroundFetchResult.newData
}
+
+ func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {
+ #if DEBUG
+ Messaging.messaging().setAPNSToken(deviceToken, type: .sandbox)
+ #else
+ Messaging.messaging().setAPNSToken(deviceToken, type: .prod)
+ #endif
+ }
}
extension AppDelegate: UNUserNotificationCenterDelegate {