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. ...
-
May 24, 2022
- 0 Comments
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 ...
-
May 24, 2022
- 0 Comments
I’m working with Firebase and testing sending notifications to my app from my server while the app is in the background. The notification ...
-
May 16, 2022
- 0 Comments
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 ...
-
May 2, 2022
- 0 Comments