@Maheshvy wrote:
Hi ,
I'm using plugin for push notification
cordova plugin add phonegap-plugin-push --variable SENDER_ID="xxxxx"
i not able to get push notification in ios device(version 9.3.5 and above) ..But in server it is showing message send successfully.
my front end code is here .var push = PushNotification.init({ "android": { "senderID": "xxxxx", "icon": "notify", "iconColor": "#204057", "forceShow": "true" }, "ios": { "alert": "true", "badge": "true", "sound": "true", "forceShow": "true" } }); push.on('registration', function(data) { alert(data); }); push.on('notification', function(data) { alert(data); }); push.on('error', function(e) { });
Posts: 1
Participants: 1