GCM with PHP (Google Cloud Messaging)
Update: GCM is deprecated, use FCM How can I integrate the new Google Cloud Messaging in a PHP backend? 13 Answers 13
Update: GCM is deprecated, use FCM How can I integrate the new Google Cloud Messaging in a PHP backend? 13 Answers 13
My app generates a notification, but the icon I set for that notification is not being displayed. Instead, I get a white square. … Read more
I’m starting with the new Google service for the notifications, Firebase Cloud Messaging. Thanks to this code https://github.com/firebase/quickstart-android/tree/master/messaging I was able to send … Read more
Hope all of you aware of this class, used to get notification token whenever firebase notification token got refreshed we get the refreshed … Read more
I’m working with Firebase and testing sending notifications to my app from my server while the app is in the background. The notification … Read more
Here is my manifest: <service android:name=”.fcm.PshycoFirebaseMessagingServices”> <intent-filter> <action android:name=”com.google.firebase.MESSAGING_EVENT” /> </intent-filter> </service> <service android:name=”.fcm.PshycoFirebaseInstanceIDService”> <intent-filter> <action android:name=”com.google.firebase.INSTANCE_ID_EVENT” /> </intent-filter> </service> When the app … Read more