All Projects → PatilShreyas → FCM-OnDeviceNotificationScheduler

PatilShreyas / FCM-OnDeviceNotificationScheduler

Licence: MIT license
Demo implementation to Schedule FCM Notifications on Android Device using AlarmManager + WorkManager.

Programming Languages

kotlin
9241 projects

Projects that are alternatives of or similar to FCM-OnDeviceNotificationScheduler

fcmpush
Firebase Cloud Messaging API wrapper for Ruby, suppot HTTP v1 API including access_token auto refresh feature.
Stars: ✭ 44 (-60.36%)
Mutual labels:  fcm, firebase-cloud-messaging, fcm-notifications
laravel-firebase
Laravel FCM (Firebase Cloud Messaging) Notification Channel
Stars: ✭ 25 (-77.48%)
Mutual labels:  fcm, firebase-cloud-messaging, fcm-notifications
Rpush
The push notification service for Ruby.
Stars: ✭ 1,886 (+1599.1%)
Mutual labels:  fcm, firebase-cloud-messaging
Fcm
Ruby bindings to Firebase Cloud Messaging (FCM) for Android, iOS or Web
Stars: ✭ 409 (+268.47%)
Mutual labels:  fcm, firebase-cloud-messaging
Fcm Toolbox
📲 Firebase Cloud Messaging toolbox
Stars: ✭ 217 (+95.5%)
Mutual labels:  fcm, firebase-cloud-messaging
Electron Push Receiver
A module to bring Web Push support to Electron allowing it to receive notifications from Firebase Cloud Messaging (FCM).
Stars: ✭ 158 (+42.34%)
Mutual labels:  fcm, firebase-cloud-messaging
laravel-firebase
Laravel Firebase API implementation
Stars: ✭ 22 (-80.18%)
Mutual labels:  fcm, fcm-notifications
Applozic Android Sdk
Android Real Time Chat & Messaging SDK
Stars: ✭ 611 (+450.45%)
Mutual labels:  fcm, firebase-cloud-messaging
FCMBundle
A Bundle for Symfony projects to send notifications in mobile devices through Firebase Cloud Messaging API
Stars: ✭ 43 (-61.26%)
Mutual labels:  fcm, firebase-cloud-messaging
Pushraven
A simple Java library to interface with Firebase Cloud Messaging (FCM) API. Pushraven allows you to push notifications to clients in very few lines of code.
Stars: ✭ 67 (-39.64%)
Mutual labels:  fcm, firebase-cloud-messaging
Kotlin Firebase Group Chat
Group and OneonOne chat using firebase built in Kotlin similar to whatsapp.
Stars: ✭ 44 (-60.36%)
Mutual labels:  fcm, firebase-cloud-messaging
Qiscus Sdk Android
Qiscus provide everything you need to power up your app with chats. And it's now made simple.
Stars: ✭ 175 (+57.66%)
Mutual labels:  fcm, firebase-cloud-messaging
PUSHTestFCM
[FireMonkey] Push test project
Stars: ✭ 17 (-84.68%)
Mutual labels:  fcm, fcm-notifications
Java-fcm
Java wrapper library to send messages to Android clients through Firebase Cloud Messaging
Stars: ✭ 29 (-73.87%)
Mutual labels:  fcm, firebase-cloud-messaging
Go Fcm
Firebase Cloud Messaging ( FCM ) Library using golang ( Go )
Stars: ✭ 212 (+90.99%)
Mutual labels:  fcm, firebase-cloud-messaging
Fcm Django
FCM Django: Send push notifications via django to websites, iOS & android mobile devices through FCM (Firebase Cloud Messaging)
Stars: ✭ 495 (+345.95%)
Mutual labels:  fcm, firebase-cloud-messaging
Fcm
Firebase Cloud Messaging (FCM) notifications channel for Laravel
Stars: ✭ 169 (+52.25%)
Mutual labels:  fcm, firebase-cloud-messaging
fcmxmppserverv2
XMPP Connection Server for FCM using the latest version of the Smack library (4.3.4) + Connection Draining Implementation
Stars: ✭ 43 (-61.26%)
Mutual labels:  fcm, firebase-cloud-messaging
andpush
Android Push Notification in Ruby: The fastest client for FCM (Firebase Cloud Messaging)
Stars: ✭ 83 (-25.23%)
Mutual labels:  fcm, firebase-cloud-messaging
Pyfcm
Python client for FCM - Firebase Cloud Messaging (Android, iOS and Web)
Stars: ✭ 674 (+507.21%)
Mutual labels:  fcm, firebase-cloud-messaging

🔔 FCM - Push Notification Scheduler (On Device 📱)

Article About this is available here.

This is demo app to implement FCM On Device Push Notification Scheduling using AlarmManager and WorkManager.

Show some ❤️ and star the repo to support the project

GitHub stars GitHub forks GitHub watchers GitHub followers Twitter Follow Medium Article License

Introduction

  • We can use Cloud Pub/Sub with Firebase Cloud Functions to send FCM Push Notifications. But this solution is costly to implement.
  • Here, We are using regular FCM Push Notifications and scheduling it on device.

In this demo app, We are subscribing to a FCM Channel discount-offers. We'll receive Data payload from FCM to this subscribed channel and we will process and schedule it.

Dependencies

  • Firebase Messaging - Firebase Cloud Messaging Library.
  • Firebase IID - Firebase Instance ID Library.
  • WorkManager - Used for Background Work Processing.

Setup

  • Setup project in Firebase Console.
  • Download and paste google-services.json configuration file in /app directory.
  • Keep legacy API key for FCM Push Notification REST.

Implementation Structure

src
│
└───fcm
│   │   MyFirebaseMessagingService.kt
│   │   NotificationBroadcastReceiver.kt
│   │   ScheduledWorker.kt
│   
└───util
|   │   NotificationUtil.kt
|   │   SettingUtil.kt
|
└───ui
|   │   MainActivity.kt
|   
  • MyFirebaseMessagingService: FCM Receiver Service Implementation. Process of Notification Scheduling using AlarmManager is implemented here.

  • NotificationBroadcastReceiver: BroadcastReceiver Implementation. Executed when AlarmManager is triggered. WorkManager is initiated and executed for background processing.

  • ScheduledWorker: WorkManager Implementation. Notification is displayed in the system tray and other background processed are executed.

  • NotificationUtil: Implementation to display Notification on the system tray.

  • SettingUtil: Function implementation to check whether Automatic Date & Time setting is ON/OFF.

  • MainActivity: UI Implementation to subscribe to FCM Channel.

What's Happening? 🤔

  • Subscribe to discount-offers FCM Channel from Android Device.
  • Data Payload will be as follows
 { 
    "to": "/topics/discount-offers", 
    "priority": "high",
    "data" : {
      "title" : "TITLE_HERE",
      "message" : "MESSAGE_HERE",
      "isScheduled" : "true",
      "scheduledTime" : "2019-12-13 09:41:00"
    }
}

Format of scheduledTime: YYYY-MM-DD HH:MM:SS

  • Receive FCM on device and onMessageReceived() in MyFirebaseMessagingService will be invoked. In this, following operations will be done-
    • If isScheduled parameter received is false then notifications is displayed in system tray instantly.
    • If isScheduled is true then scheduledTime is parsed from payload and AlarmManager is used to set one-time alarm at that time and NotificationBroadcastReceiver implementation will be executed on that time.
    • In onReceive(), we have scheduled a WorkManager ScheduledWorker for background work processing. There in doWork(), we're finally we're displaying Notification on system tray. Do any background proessing and return status from WorkManager.

Hurrah!😍 we have successfully implemented On-Device Scheduling of FCM Push Notification👍.

Let's Test It

I have sent below payload with to the FCM Channel (discount-offers).

{ 
 "to": "/topics/discount-offers", 
 "priority": "high",
 "data" : {
  "title" : "🎅 Christmas Offer 🎄",
  "message" : "Grab 90% Discount 😍 on Mobile Phones",
  "isScheduled" : "true",
  "scheduledTime" : "2019-12-13 14:12:00"
 }
}

🚀See output below and notice that Internet/Wi-Fi is OFF still at exactly 02:12 pm I'm getting a notification on the system tray 😃.

Yippie 😍! It's working as expected. Hope you liked that. If you find it helpful please share this. Maybe it'll help someone needy!

❤️ Found this project useful?

If you found this project useful, then please consider giving it a on Github and sharing it with your friends via social media.

Sharing is Caring!

Connect With Me

If you want to contact me, feel free to reach me… Visit My Profile.

License

MIT License

Copyright (c) 2019 Shreyas Patil

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].