I added quickblox to my app,
And put up the development and production APNS certificates
when i open the app, in development mode, with the development flag off
[QBSettings setIsProductionEnvironmentForPushNotifications:NO]
i get a push notification token, sending messages to this token makes the arrive
, however, when I want to switch to production mode i put
[QBSettings setIsProductionEnvironmentForPushNotifications:YES]
and then in the method application:didRegisterForRemoteNotificationWithDeviceToken:
gives the EXACT same development token.
How do I generate a production token instead? How to force a new token to be created?