Meteor Package Error: Cordova Depends Version string must look like semver error -


working on mobile package splashscreen dependencies.

cordova.depends({ 'org.apache.cordova.splashscreen': '1.0.0' }); 

the above works. however, theres fatal error in version 1.0.0 , cant use it. fortunately, they've patched in fork of plugin @ 'https://github.com/thebosz/cordova-plugin-splashscreen/tarball/891cbf29bf0a7194f637fac4987c1ff4da97f146ss'

so should able this....

cordova.depends({      'org.apache.cordova.splashscreen': 'https://github.com/thebosz/cordova-plugin-splashscreen/tarball/891cbf29bf0a7194f637fac4987c1ff4da97f146ss', }); 

but giving me there error cordova depends version string must semver error. gives?

i figured out. one, plugin here: http://plugins.cordova.io/#/package/org.apache.cordova.splashscreen

and git corresponds here: https://github.com/apache/cordova-plugin-splashscreen

have different package names. furthermore, meteor packages splash screen without mobile apps. why getting errors when tried add correct 1 project. case closed.