You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since iOS 7 and below only holds 5% of the market share I'm not currently supporting it. I also don't have an iOS 7 device to test on.
Try adding this code to CDVFixSelectPoppover.m at the start of the load method:
`+(void)load {
// Check for iOS 7 and below. Bail if we aren't iOS 8 or above.
NSArray *versionPieces = [[UIDevice currentDevice].systemVersion componentsSeparatedByString:@"."];
// Check the Major version number only
if ([[versionPieces objectAtIndex:0] intValue] < 8) {
return;
}
This plugin crashes iOS 7 when a page with a select box is present:
Is there an easy way to make it only load on iOS 8?
The text was updated successfully, but these errors were encountered: