iPhone SDK Push Notification
Posted
by Craig
on Stack Overflow
See other posts from Stack Overflow
or by Craig
Published on 2009-06-26T10:02:57Z
Indexed on
2010/04/12
13:53 UTC
Read the original article
Hit count: 534
I have setup push notifications in the apple developer panel and added the code to my application.
It works fine on the phone using a development profile but if I use a distribution (ad-hoc) profile so that I can give it to a few users for testing it gives an error and crashes, the log gives the following error
Code:
Thu Jun 25 22:22:35 unknown SpringBoard[729] <Warning>: *** Assertion failure in -[SBRemoteNotificationServer registerApplication:forEnvironment:withTypes:], /SourceCache/SpringBoard/SpringBoard-919.5/SBRemoteNotificationServer.m:633
Thu Jun 25 22:22:35 unknown SpringBoard[729] <Error>: *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'no connection found for environment production'
I am using the following code in the app
Code:
[[UIApplication sharedApplication] registerForRemoteNotificationTypes:(UIRemoteNotificationTypeAlert | UIRemoteNotificationTypeBadge | UIRemoteNotificationTypeSound)];
The thing I don't understand is why it works perfectly using a development profile but with ad-hoc it crashes.
Does anyone know what would cause this?, I've tried changing lots of things to try and find the issue but have found nothing.
© Stack Overflow or respective owner