[
https://issues.apache.org/jira/browse/CB-328?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13287047#comment-13287047
]
Shazron Abdullah commented on CB-328:
-------------------------------------
Forgot to mention - the mobile-spec failures are attached as an image.
> Cordova crashes on iOS 3 devices
> --------------------------------
>
> Key: CB-328
> URL: https://issues.apache.org/jira/browse/CB-328
> Project: Apache Cordova
> Issue Type: Bug
> Components: iOS
> Affects Versions: 1.5.0
> Reporter: Shazron Abdullah
> Assignee: Shazron Abdullah
> Priority: Critical
> Fix For: 1.8.0
>
> Attachments: iOS3-MobileSpec.png
>
>
> I just tested the 1.5.0 code, it definitely crashes during runtime for an iOS
> 3 device right now because of some iOS 4 code, namely registering for
> pause/resume lifecycle events that we didn't guard for, for devices < iOS 4.
> The fix is to guard the affected code using this:
> {code}
> NSString* systemVersion = [[UIDevice currentDevice] systemVersion];
> BOOL isiOS4 = ([systemVersion compare:@"4.0" options:NSNumericSearch] !=
> NSOrderedAscending);
> if (isiOS4) {
> // do your iOS 4 thing!
> }
> {code}
> But I'm wondering if this is worth it since we are moving away from iOS 3.
> See CB-93
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira