Issues with iOS 11

0
Hi,  I have a problem with the new version of phonegap. I made a new phonegap package and changed the files config.xml and index.html. But when app is installed on new version of iOS 11 version, the app doesn't work. I can login and after that I just see waiting process. On last iOS version of 10.3 everything worked well. Does anybody know what could be problem?  I used phonegap version 7.0.1.
asked
2 answers
0

Hi Wilfried,

I solved this issue with link in your answer, but after that I had one more issue and it was about a signature widget.  I could not create a signature. I just removed the plugin cordova-plugin-wkwebview-engine-nextgen from config.xml and now everything works fine. I can run the application on iOS 11 and all widgets work properly.

Thanks. 

answered
0

Hi David,

As Danny mentions here, you need to bump up the version (spec) of the wkwebview-engine plugin to v1.1.0. In your phonegap config.xml file: 

<plugin name="cordova-plugin-wkwebview-engine-nextgen" source="npm" spec="^1.1.0" />

 

Thanks,

Conner

answered