Phonegap / Cordova not working in ios8
cordova, ios, ios8
Solution
You can fix this with a bit of Javascript in your index.html (or install iOS 8 beta 2, which seems to have fixed the issue): https://gist.github.com/EddyVerbruggen/cd02c73162180793513e#file-ios8-beta-phonegap-fix
// temp fix for iOS8 beta, add it after the reference to cordova.js
// You don't actually require it for ios 8 beta 5
if (navigator.userAgent === undefined) {
navigator.__defineGetter__('userAgent', function() {
return("Mozilla/5.0 (iPhone; CPU iPhone OS 8_0 like Mac OS X) AppleWebKit");
});
}
Problem
I played around with the iOS 8 beta and noticed that Cordova/Phonegap is pretty much broken. For me it is mainly the InAppBrowser that now doesn't show up. what are your experiences? Do you have a fix or an idea for a solution? Thanks.