Reputation: 1535
I googled it and I can't seem to find an answer for that: does device token get changed when there is an update from app store for my app?
Upvotes: 1
Views: 93
Reputation: 40030
Device tokens can change. Your app needs to reregister every time it is launched — in iOS by calling the
registerForRemoteNotificationTypes:
method ofUIApplication
.
Source: Local and Push Notification Programming Guide
Upvotes: 3