extjs - Push Notification Sencha Touch 2 -


am developing ios application using sencha touch 2, have requirement of sending push notification . have set apple certificate file, provisional profile did server side coding achieve this. not sure there push notification service in sencha ? how can achieve this... should use phonegap? please direct me in right direction.. appreciated. in advance

yes, make ios sencha-touch based application support notification, should use third party plugin such mentioned in documentation : -sencha packager -phonegap -simulator

i used phonegap implementation , in app.js file put notifications related infos. when notification generated in backend send right user based on session's token stored on moment of authentification:

ext.application({ ... //notifications configuration notifications : {     storetokenurl   : 'https://adress/whereto/store/token/',     gcmsenderid     : '0123456789012',     appid       : 'apple_app_id',     title       : 'notification title' } }) 

Comments

Popular posts from this blog

java - activate/deactivate sonar maven plugin by profile? -

python - TypeError: can only concatenate tuple (not "float") to tuple -

java - What is the difference between String. and String.this. ? -