Closed tasinsahin closed 6 years ago
Thanks for the issue! This issue appears to be a support request. We use this issue tracker exclusively for bug reports and feature requests. Please use our forum or our slack channel for questions about the framework.
Thank you for using Ionic!
A couple of suggestions here:
First: you are using ^
prefixes on your versions. I suggest either specifically pinning your versions by not using a prefix or using the "patch" prefix ~
.
Second: Your versions of ionic-native
stuff is all very inconsistent. Use consistent versions. The latest is 4.11.0
. So basically make all of the ionic-native
deps look like one of these:
pinned
"@ionic-native/camera": "4.11.0",
"@ionic-native/core": "4.11.0",
"@ionic-native/crop": "4.11.0",
patch
"@ionic-native/camera": "~4.11.0",
"@ionic-native/core": "~4.11.0",
"@ionic-native/crop": "~4.11.0",
After updating your package.json
be sure to do an npm install
(I have forgotten to do that more than once... :) )
Hi, Last week, I was able to use all of the ionic natives, using camera, geolocation, orientation etc. I have upgraded my iPhone 7 device to IOS 12, thus I had to upgrade ionic libraries on my project. Now, I am unable to use any of the natives on my iPhone 7 with IOS 12 device. Anybody help me to oversome this problem? I have the following package.json;