Reputation: 332
I am working on an app using push notifications. The problem is I am not receiving push notifications on iOS devices even with the Push Notification Tool.
On Android, everything works well. I 've uninstalled/reinstalled and logged out from the expo iOS client but the problem still persists. The only notable change I made in my app was updating to SDK v33.
Any idea on what could be the problem?
Upvotes: 3
Views: 2852
Reputation: 807
Common reasons why this could be happening
IOS requires notification permission to be granted for each app.
IOS does not show notification when app is in foreground.
You can check it by attaching a notification listener.
Upvotes: 8