Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GCM to FCM for Xamarin

Xamarin has the predefined support to GCM (Google Cloud Messaging) which was explained in https://developer.xamarin.com/guides/cross-platform/application_fundamentals/notifications/android/remote_notifications_in_android/

As currently Google migrated from GCM to FCM (Firebase Cloud Messaging) does it work with Xamarin with same instruction or there any other Docs for integrating FCM with Xamarin?

Does all features provided in Firebase can be used in Xamarin App?

like image 816
arvindwill Avatar asked May 28 '16 14:05

arvindwill


People also ask

What is GCM service on Android?

Google Cloud Messaging (GCM) is a service that allows you to send push notifications from your server to your users' Android devices, and also to receive messages from devices on the same connection.

How GCM works?

GCM stands for Google Cloud Messaging. Every push notification receive on any Android device is sent by the GCM only. when sender sends an push notification then it goes to GCM. GCM receives that push and forward it to particular Android Device by its Unique device id.


2 Answers

does it work with Xamarin with same instruction?

No, it doesn't. But you can still work with GCM since Google hasn't announced that GCM support will stop just now. They just posted that FCM is the newest version of GCM.

there any other Docs for integrating FCM with Xamarin?

Not just yet, Xamarin doesn't have a guide about how to integrate FCM with your Xamarin.Android app.

Does all features provided in Firebase can be used in Xamarin App?

Yes, they can be used with Xamarin. But at this moment we have to wait until Xamarin provides us with official bindings(dlls) for FCM java libraries(jars) and probably they will post something in their blog about how to integrate this with our apps.

At this point, the best thing you can do while developing with Xamarin is use GCM. The other thing you can do, is create your own bindings with FCM java libraries and use Google's tutorial for android (in java)

While the last option will probably work, when the official Xamarin bindings come you will have to change a lot of code in order to make it work with upcoming updates from Google and Xamarin.

EDIT: as pointed out by @SørenBoisen Xamarin has started to rollout official(pre-release) bindings via nugget: https://www.nuget.org/packages/Xamarin.Firebase.Common/

More info at: Support for Google Firebase — Xamarin Forums

like image 67
Santiago Hernández Avatar answered Oct 16 '22 07:10

Santiago Hernández


The Firebase bindings are now available for Xamarin Android as a nuget package here:

like image 30
checkmate711 Avatar answered Oct 16 '22 05:10

checkmate711