1
votes

I am developing a mobile using Sencha touch and phonegap. As per my requirement, I need to implement push notification without using Google Cloud Message Service (GCMS) for android devices and Apple Push Notification Service (APNS) for iOS device.

I have gone through pushwoosh plugin and push plugin to implement feature. But these plugins are using GCMS for android and APNS for iOS.

Question: How to implement push notification without using GCMS and APNS. It could be more helpful if I get some information to know how to implement the same from server side also.

1
In order to use the built-in notifications for either device you must register the devices through their respective service (GCM, APNS) and send the messages from the server through those services to reach the device. GCM is a simple set-up but APNS requires you to create certificates for SSL. I used these links when doing the same thing blog.serverdensity.com/… iandevlin.com/blog/2012/11/phonegap/… developer.android.com/google/gcm/server.html - xd6_
Could you use an Azure Notification Hub? - Rowland Shaw
You can create the server or use a built backend for push, but all the options have to use the apple APNs, because they send the push notifications, and your device will only receive them if it comes from the apple APNs - jcesarmobile
How about using websockets? - user1255162

1 Answers

1
votes

You can't and impossible. You still need APNS and GCM in other to make your push notification works.