How to implement push notification service for a crossplatform webapp?
cordova, google-cloud-messaging, jquery, push-notification, web-applications
Solution
As suggested by others PushPlugin seems good option as per your requirement. It can be implemented and free to use. You have to configure for different platforms. This plugin is for use with Cordova, and allows your application to receive push notifications on Amazon Fire OS, Android, iOS, Windows Phone and Windows8 devices.
- The Amazon Fire OS implementation uses Amazon's ADM(Amazon Device Messaging) service.
- The Android implementation uses Google's GCM (Google Cloud Messaging) service.
- The BlackBerry 10 version uses blackberry push service.
- The iOS version is based on Apple APNS Notifications.
- The WP8 implementation is based on MPNS.
- Windows8 uses Microsoft WNS Notifications.
For detailed implementation steps for above platforms you can check this page
Hope this is helpful to you with your question..!
Edit
Links are updated with the latest Github Repos.
Problem
I want to integrate push notification with my web app built using HTML ,javascript and jquery mobile and packaged with phonegap for android. Can anyone please suggest some links to go for that. For android complete documentation is given on developers.android.com. But for webapp I dont know how to proceed. Any suggestion would be highly appreciated. Thanks in advance.