You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by GitBox <gi...@apache.org> on 2019/08/08 12:16:31 UTC

[GitHub] [cordova-android] breautek commented on issue #803: Failed to fetch platform cordova-android@8.0.0

breautek commented on issue #803: Failed to fetch platform cordova-android@8.0.0
URL: https://github.com/apache/cordova-android/issues/803#issuecomment-519493505
 
 
   This isn't a `cordova-android` issue.
   
   `EPEERINVALID` error means you have incompatible or conflicted peer dependency demands.
   
   > npm ERR! peerinvalid The package @ionic-native/core@5.11.0 does not satisfy its siblings' peerDependencies requirements!
   
   This states the the `@ionic-native/core@5.11.0` is the conflicted peer dependency. You have `@ionic-native/core@5.11.0` installed.
   
   But...
   
   > npm ERR! peerinvalid Peer @ionic-native/splash-screen@5.0.0 wants @ionic-native/core@5.0.0
   npm ERR! peerinvalid Peer @ionic-native/status-bar@5.0.0 wants @ionic-native/core@5.0.0
   
   You have 2 packages, `@ionic-native/splash-screen` & `@ionic-native/status-bar` demands specifically `@ionic-native/core@5.0.0`. This means that you need specifically version `5.0.0` of `@ionic-native/core` to use these 2 packages. This is a problem because...
   
   > @ionic-native/geolocation@5.3.0 wants @ionic-native/core@^5.1.0
   
   You have a several other dependencies such as `@ionic-native/geolocation` that demand a different version.
   
   Hope this helps you understand the problem. To fix this issue you have to find a group of ionic dependencies that share the same peer dependency demands. Perhaps updating ionic's `splash-screen` and `status-bar` plugins will lift the peer dependency higher to match your other dependencies.
   
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org