Ankit Arora
Ankit Arora

Reputation: 21

While adding plugins to Cordova project: Meteor

I am trying to integrate push notifications and used raix push package notifications for this, As per the installation process, I need to run the following commands

$ meteor add raix:push 
$ meteor add cordova:[email protected] 
$ meteor add cordova:[email protected]

But these versions are causing some problems, Please check the attached screenshot enter image description here.

I tried with version meteor add cordova:[email protected] but it also does not work.

Upvotes: 0

Views: 47

Answers (1)

user3807691
user3807691

Reputation: 1304

Try running with sudo as its a permission error. Also, you can create a cordova-plugins file in .meteor folder mentioning the plugins recquired with their version numbers to get rid of the warnings. Ex :

   [email protected]
   [email protected]

Upvotes: 1

Related Questions