Reputation: 5363
I got the same issue as this guy
And this thread
When running my app as meteor run ios-device and then trying to run it form Xcode8, it throws a lot of issues.
Tried setting the swift version to legacy support in the build settings for the project without luck, also bumped the version from 1.2.8 to 1.3.0, didn't work.
It seems it could be fixed by changing to swift3 branch but I don't know how to do this since this package is being pulled by Atmosphere, so it's probably selecting master branch from npm and overriding the files each time I try to run it with meteor run ios-device
This is the Broken Package Github Repo
Upvotes: 1
Views: 956
Reputation: 66
As suggestet by erikwall, but instead of
meteor add cordova:cordova-plugin-meteor-webapp@https://github.com/meteor/cordova-plugin-meteor-webapp.git#8bf95eed3f313299fc2de33658866278eea2cdc5
just do:
meteor add cordova:cordova-plugin-meteor-webapp@latest
For me did work just with latest
Upvotes: 1
Reputation: 151
Doing meteor add will override the default plugin version that comes with Meteor, you just need to point to the specific commit. Taken from https://forums.meteor.com/t/ios-10-compatibility/26065/17
meteor add cordova:cordova-plugin-meteor-webapp@https://github.com/meteor/cordova-plugin-meteor-webapp.git#8bf95eed3f313299fc2de33658866278eea2cdc5
Upvotes: 5