Xamarin.iOS RegisteredForRemoteNotifications not called

Viewed 6214

I am using Xamarin Forms and am currently trying to get push notifications to work with the iOS project. I have followed this Xamarin guide to add notifications to my iOS app but the RegisteredForRemoteNotifications method is never called.

I have also created both push notification certificates and enabled background notifications. Even FailedToRegisterForRemoteNotifications is never called.

What can I do?

PS: I'm using an iPhone 5s with iOS 10 so I also read this post on the User Notifications Framework.

Certificates Provisioning Progile

4 Answers

You cannot register the device if it is a simulated device.

I was having the same issue. The fault was, the mobile phone didn't have an active internet connection!

Related