Reputation: 1821
I am trying to install push notification plugin for ionic app, by following this docs, but I get an error when I run:
ionic plugin add phonegap-plugin-push
The error:
Error: Variable(s) missing (use: --variable SENDER_ID=value).
Upvotes: 2
Views: 212
Reputation: 690
It's mandatory --variable SENDER_ID
. Do you have sender_id for Android? otherwise you can simply do:
ionic plugin add phonegap-plugin-push --variable SENDER_ID="XXXXXXX"
if you have problems check the doc
Upvotes: 2