Reputation: 754
I have integrated google Admob
in my app. And when I try to click on that banner of Ad it restarts the device
When it gets restart it shows dialog box which says
SpringBoard has just crashed
It is working fine with simulator.
On Console it shows exception
Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'SBAppToAppTransitionView should only be used on devices with fast color multiply'
Device I am testing on is iPhone 3G 4.2.1
Upvotes: 0
Views: 250
Reputation: 11
I was receiving this error on my phone every time an app tried to transition to another app (in-app purchases, for example).
My phone is an iPhone 3G, Jailbroken, running iOS 4.2.1. I did not have the problem when running an earlier iOS 3.x.x version.
The solution I found came from this link: http://www.ifans.com/forums/showthread.php?t=323402
Adding the key:
<key>opengles-2</key>
<true/>
to /System/Library/CoreServices/Springboard.app allowed SBAppToAppTransitionView to display the "page flip" animation and switch apps without crashing Springboard.
The page flipping animation seems to work just fine on an iPhone 3GS (which supports native multitasking) without any tweaks.
This probably won't help you directly when you publish your app, but will hopefully pinpoint you to the location of the problem and let you work around it.
Good luck!
Upvotes: 1
Reputation: 678
That dialog box is the Classic mobilesubstrate dialog box, that means that the springboard crashed with SIG*** exception ;)
Upvotes: 0
Reputation: 50707
There is nothing in your code that would force the device to restart. You can hook your device up to the USB and run Organizer / Console for your device, and see if there is anything abnormal in there. If the device is automatically restarting, I would also doubt there would be any crash output, so the console while right before the device restarts may give you some indication as to why.
Upvotes: 0