phonegap push notification without GCM google cloud messaging - android

It is possible to implement notification push in phonegapp without passing to google cloud messaging?
I could find just the plugins that use gcm like this:
https://github.com/phonegap/phonegap-plugin-push
exist a different solution without passing to gcm??

Related

Rpush notification not working for FCM enabled app

I have developed android app that allows FCM notifications. I am using rpush gem to send these push notifications, but I believe rpush sends GCM instead of FCM notification. I am trying to learn if there is a tweak to send FCM notification via rpush without changing android app to switch to GCM.
Try to check the push notification service for Ruby by github.
It was stated that FCM (used to be GCM) is one of the supported services.
Supported Services
Apple Push Notification Service
Including Safari Push Notifications.
Firebase Cloud Messaging (used to be Google Cloud Messaging)
Amazon Device Messaging
Windows Phone Push Notification Service
Based on Firebase Cloud Messaging
FCM and GCM are – as of writing – compatible with each other. See also
this comment for further references.

Which is the best way to send Push Notifications in Android?

Currently i am using onesignal.com push notifications. Is there any better service or better way to send push notifications in Android with more features?
You can use both GCM(Google Cloud Messaging) and FCM (Firebase Cloud Messaging).
Some features of GCM are deprecated so Google is suggesting to use FCM.
FCM has a killing feature of sending notification to all users who have installed your app all or to those users who have subscribed to a particular topic(You can even check for topics i.e. Weather report for INDIA(who stays there),AUSTRALIA(who stays there).
You can implement FCM in your app very easily.
With FCM you can either use a Third Party Server or can send notification using their own cloud service.
Just visit and register your app with a coolest feature provided by Google-FireBase Cloud Messaging.
You can even check some videos on Youtube-Google Developer Videos
I use it with a lot of very nice handy feature here
I'm using Firebase (https://firebase.google.com/). It's easy to learn and has good documentations.
You can use FCM (Firebase Cloud Messaging) to implement push notification. for better understanding go through this article

implementing push notifications for Cordova project with Firebase

I have a Cordova app and I'm trying to implement Push Notifications feature for it. My idea is to use FCM (Firebase Cloud Messaging). I was able to implement it for a sample native Android application. How do I do it for this Cordova App?
I am currently investigating Firebase Cloud Messaging Cordova Push Plugin which looks promising.
In short:
Extremely easy plug&play push notification plugin for Cordova applications and FCM.
It allow:
Subscribe/unSubscribe to/from topic
Receiving push notification data
Send notification
Will update later my findings.

Google Cloud Messaging vs RabbitMQ

I need to use a PUSH notification system for my Android application. I know that the most known service is Google Cloud Messaging (GCM). But there are others messaging system like RabbitMQ, that is based on the AMQP standard, and that simply allows to build PUSH notification service.
So, the question is, what are the advantages (and/or drawbacks) of using GCM, than RabbitMQ (or others messaging system) ?
If we are developing Push messaging with RabbitMQ, you have to write the pub sub service on android. On server side, to be connected to many more devices using pubsub you have to a cluster of rabbitmq servers. If you are using GCM, you dont have to do all those mentioned. Google does this for you.

How to send push notifications

I need to add the ability to send push notifications out to users who have our app installed (yet to go to market).
I guess I will need to install a phonegap plugin that will look for updates on our server (or could be triggered from our server) but I'm struggling to find a good approach.
I have seen this:
https://github.com/saileshmittal/phonegap-system-notification-plugin/tree/master/android-statusbar-notificaion
It allows phonegap to send a notification, but I don't know how I could send a remote message to the script to trigger a message.
C2DM is deprecated and GCM ( Google Cloud Messaging) is used to implement your push notifications for Android App.
In Android the technology of push notifications is called C2DM. Here is a tutorial for this.

Categories

Resources