{"id":10256,"date":"2020-05-19T14:13:00","date_gmt":"2020-05-19T08:43:00","guid":{"rendered":"https:\/\/www.botreetechnologies.com\/blog\/?p=10256"},"modified":"2021-09-08T18:59:56","modified_gmt":"2021-09-08T13:29:56","slug":"local-scheduled-push-notifications-in-react-native-app-with-firebase","status":"publish","type":"post","link":"https:\/\/www.botreetechnologies.com\/blog\/local-scheduled-push-notifications-in-react-native-app-with-firebase\/","title":{"rendered":"Local, Scheduled Push Notifications in React Native App with Firebase"},"content":{"rendered":"\n<p>Hello folks. I hope you all are doing well.<\/p>\n\n\n\n<p>In this tutorial, you&#8217;re going to learn how to handle and schedule local push notification with firebase using\u00a0<a href=\"https:\/\/www.botreetechnologies.com\/react-native-development\">react native development<\/a>.<\/p>\n\n\n\n<p>There are two types of notifications, remote and local notifications.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><a class=\"anchor\" href=\"https:\/\/dev.to\/botreetechnologies\/how-to-scheduled-push-notification-with-firebase-in-react-native-3hcf#remote-notifications\" name=\"remote-notifications\"><\/a>Remote Notifications<\/h4>\n\n\n\n<p>With remote notifications, we should use one of our company servers to push data to user devices via any notification service.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><a class=\"anchor\" href=\"https:\/\/dev.to\/botreetechnologies\/how-to-scheduled-push-notification-with-firebase-in-react-native-3hcf#local-notifications\" name=\"local-notifications\"><\/a>Local Notifications<\/h4>\n\n\n\n<p>In local notification, notification is scheduled and triggered by an app on a particular time and date and delivered on the same device.<\/p>\n\n\n\n<p>In this tutorial, we will use local notification to schedule reminder.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><a class=\"anchor\" href=\"https:\/\/dev.to\/botreetechnologies\/how-to-scheduled-push-notification-with-firebase-in-react-native-3hcf#prerequisites\" name=\"prerequisites\"><\/a>Prerequisites<\/h2>\n\n\n\n<p>This tutorial requires basic knowledge of React Native development. To set up your development machine, follow the official guide\u00a0<a href=\"https:\/\/reactnative.dev\/\" target=\"_blank\" rel=\"noreferrer noopener\">here<\/a>.<\/p>\n\n\n\n<p>We are going to use&nbsp;<a href=\"https:\/\/github.com\/invertase\/react-native-firebase\">react-native-firebase<\/a> to handle push notification.<\/p>\n\n\n\n<p>Before implementing to schedule push notification, please visit this\u00a0<a href=\"https:\/\/dev.to\/botreetechnologies\/how-to-scheduled-push-notification-with-firebase-in-react-native-3hcf\" target=\"_blank\" rel=\"noreferrer noopener\">article<\/a>\u00a0to configure project.<\/p>\n\n\n\n<p>After the configured project, Let&#8217;s create one <strong>FCMService<\/strong>&nbsp;to handle notification<\/p>\n\n\n\n<p>Create one folder in project directory named it as&nbsp;<code>src<\/code>&nbsp;and under the&nbsp;<code>src<\/code>&nbsp;folder create one file name as&nbsp;<code>FCMService.js<\/code><\/p>\n\n\n\n<p>Before use push notification in the app, we require the user permission to display notifications in the app. If the user denies permission it explicitly changes from the settings.<\/p>\n\n\n\n<p>First, let&#8217;s write below code in&nbsp;<code>FCMService.js<\/code> to get permission from the user.<\/p>\n\n\n\n<p><script src=\"https:\/\/gist.github.com\/RajanTank\/15683de6333155133bf340cd6e6d845d.js\"><\/script><\/p>\n\n\n\n<p>After getting permission from the user we will create listeners for listen notification.<\/p>\n\n\n\n<p><script src=\"https:\/\/gist.github.com\/RajanTank\/d1823e1b142731dfcd757f1473923f38.js\"><\/script><\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"><p>Read More:\u00a0<a href=\"https:\/\/dev.to\/botreetechnologies\/how-to-implement-push-notification-with-firebase-in-react-native-2e7n\">Implement Push Notification with Firebase in React Native<\/a><\/p><\/blockquote>\n\n\n\n<h4 class=\"wp-block-heading\"><a href=\"https:\/\/dev.to\/botreetechnologies\/how-to-scheduled-push-notification-with-firebase-in-react-native-3hcf#create-android-notification-channel\" name=\"create-android-notification-channel\"><\/a>Create Android Notification Channel<\/h4>\n\n\n\n<p>As of Android 8.0 (API Level 26), notifications must specify a Notification Channel or they will not appear.<\/p>\n\n\n\n<p>To allow&nbsp;<a href=\"https:\/\/www.botreetechnologies.com\/hire-react-native-developers\">React Native app developers<\/a>&nbsp;for Integrating Firebase to work seamlessly across all versions of Android, we will create&nbsp;<code>buildChannel()<\/code>&nbsp;before we build notification.<\/p>\n\n\n\n<p><script src=\"https:\/\/gist.github.com\/RajanTank\/5ad665ac0ef11fe316f0bbce277181e6.js\"><\/script><\/p>\n\n\n\n<p>Build channel in android accepts three parameters <code>channelId<\/code>, <code>name<\/code> and <code>importance<code>.<\/code><\/code><\/p>\n\n\n\n<p>Now, we\u2019ll add <code>buildNotification()<\/code> method which will build a notification when a notification is received:<\/p>\n\n\n\n<p><script src=\"https:\/\/gist.github.com\/RajanTank\/47eb5dd365cab01415a78b477934bc15.js\"><\/script><\/p>\n\n\n\n<p>Let&#8217;s create one function that displays notifications when a notification arrives.<\/p>\n\n\n\n<p><script src=\"https:\/\/gist.github.com\/RajanTank\/d8d35ec7b0bbd25130e104728f8fbf73.js\"><\/script><\/p>\n\n\n\n<p>Whenever we open a notification and displays a notification after that we need to remove delivered notification so, we create.<\/p>\n\n\n\n<p><code>removeDelieveredNotification()<\/code><\/p>\n\n\n\n<p><script src=\"https:\/\/gist.github.com\/RajanTank\/3261acbb6a670eac574b54d205d9e4f4.js\"><\/script><\/p>\n\n\n\n<p>The Purpose of this tutorial is to schedule notification so, Let&#8217;s create <code>scheduleNotificaion()<\/code><\/p>\n\n\n\n<p><script src=\"https:\/\/gist.github.com\/RajanTank\/85e587fd7fc1f1215f2911ac9ba6e15d.js\"><\/script><\/p>\n\n\n\n<p>So, Final <code>FCMService.js<\/code> looks like this<\/p>\n\n\n\n<p><script src=\"https:\/\/gist.github.com\/RajanTank\/32a31c79eba7d33551f1d4d0ad072385.js\"><\/script><\/p>\n\n\n\n<p>Before proceeding further Please install this dependency<\/p>\n\n\n\n<p><code>$ npm install react-native-elements react-native-modal-datetime-picker moment @react-native-community\/datetimepicker react-native-vector-icons <\/code><\/p>\n\n\n\n<p>So, we have created one file under <code>src<\/code> folder <code>scheduleReminder.js.<\/code><\/p>\n\n\n\n<p>Let&#8217;s write below code into <code>scheduleReminder.js<\/code> file.<\/p>\n\n\n\n<p><script src=\"https:\/\/gist.github.com\/RajanTank\/e49611311266b26424cda005e6471f11.js\"><\/script><\/p>\n\n\n\n<p>On <code>componentDidMount()<\/code> we have register our fcmservice and link listener callback function we have link three function <code>onRegister()<\/code>, <code>onNotification()<\/code> and <code>onOpenNotification()<\/code>.<\/p>\n\n\n\n<p><code>onRegister<\/code> function we have got the user permission, <code>onNotification<\/code> function called when our app is opened and any notification arrives that time <code>onNotification<\/code> function creates a notification and displays the notification and <code>onOpenNotification<\/code> function called whenever you tap and open the notification.<\/p>\n\n\n\n<p>We get time, title and description from the user to schedule a reminder, before a schedule reminder we need to create a notification object by using <code>buildNotification()<\/code> of FCMService because a FCMService&#8217;s <code>scheduleNotification()<\/code> function accepts a parameter as notification object and date &amp; time.<\/p>\n\n\n\n<p>After configuring all things now it&#8217;s time to test the app<\/p>\n\n\n\n<p><script src=\"https:\/\/gist.github.com\/RajanTank\/4f7e548d1c98763c9cf45f877b3387af.js\">Find the source code in the &lt;a href=\"https:\/\/github.com\/RajanTank\/RNPushNotification\" target=\"_blank\" rel=\"noopener noreferrer\">Github repo&lt;\/a> here.<\/script><\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><a href=\"https:\/\/www.botreetechnologies.com\/react-native-development\" target=\"_blank\" rel=\"noopener noreferrer\"><b>Click here for more<\/b> blogs\u2026<\/a><\/h3>\n\n\n\n<hr class=\"wp-block-separator\"\/>\n\n\n\n<p>At<a href=\"https:\/\/www.botreetechnologies.com\/\" target=\"_blank\" rel=\"noopener noreferrer\">&nbsp;BoTree Technologies<\/a>, we build enterprise applications with our ReactNative team of 10+ engineers.<\/p>\n\n\n\n<p>We also specialize in Ruby on Rails, Python, RPA, AI, Django, NodeJS and ReactJS.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><a href=\"https:\/\/www.botreetechnologies.com\/contact\" target=\"_blank\" rel=\"noopener noreferrer\">Consulting is free<\/a>&nbsp;\u2013 let us help you grow!<\/h3>\n","protected":false},"excerpt":{"rendered":"<p>Hello folks. I hope you all are doing well. In&#8230;<\/p>\n","protected":false},"author":60,"featured_media":12891,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[72,10],"tags":[],"class_list":["post-10256","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-react-native","category-technology"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Local, Scheduled Push Notifications in React Native App with Firebase<\/title>\n<meta name=\"description\" content=\"Struggling with react native app to local and scheduled push notifications with firebase? Here&#039;s a comprehensive guide for react native app developers to schedule push notifications using firebase.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/dev.to\/botreetechnologies\/how-to-scheduled-push-notification-with-firebase-in-react-native-3hcf\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Local, Scheduled Push Notifications in React Native App with Firebase\" \/>\n<meta property=\"og:description\" content=\"Struggling with react native app to local and scheduled push notifications with firebase? Here&#039;s a comprehensive guide for react native app developers to schedule push notifications using firebase.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dev.to\/botreetechnologies\/how-to-scheduled-push-notification-with-firebase-in-react-native-3hcf\" \/>\n<meta property=\"og:site_name\" content=\"BoTree Technologies\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/BoTreeTechnologies\/\" \/>\n<meta property=\"article:published_time\" content=\"2020-05-19T08:43:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-09-08T13:29:56+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/05\/local-scheduled-push-notifications-in-react-native-app.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1280\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Rajan Tank\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@BoTreeTech\" \/>\n<meta name=\"twitter:site\" content=\"@BoTreeTech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Rajan Tank\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/dev.to\/botreetechnologies\/how-to-scheduled-push-notification-with-firebase-in-react-native-3hcf#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/local-scheduled-push-notifications-in-react-native-app-with-firebase\/\"},\"author\":{\"name\":\"Rajan Tank\",\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/#\/schema\/person\/89a990f460a2469ded0784c502b88998\"},\"headline\":\"Local, Scheduled Push Notifications in React Native App with Firebase\",\"datePublished\":\"2020-05-19T08:43:00+00:00\",\"dateModified\":\"2021-09-08T13:29:56+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/local-scheduled-push-notifications-in-react-native-app-with-firebase\/\"},\"wordCount\":552,\"commentCount\":13,\"image\":{\"@id\":\"https:\/\/dev.to\/botreetechnologies\/how-to-scheduled-push-notification-with-firebase-in-react-native-3hcf#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/05\/local-scheduled-push-notifications-in-react-native-app.jpg\",\"articleSection\":[\"React Native\",\"Technology\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/dev.to\/botreetechnologies\/how-to-scheduled-push-notification-with-firebase-in-react-native-3hcf#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/local-scheduled-push-notifications-in-react-native-app-with-firebase\/\",\"url\":\"https:\/\/dev.to\/botreetechnologies\/how-to-scheduled-push-notification-with-firebase-in-react-native-3hcf\",\"name\":\"Local, Scheduled Push Notifications in React Native App with Firebase\",\"isPartOf\":{\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/dev.to\/botreetechnologies\/how-to-scheduled-push-notification-with-firebase-in-react-native-3hcf#primaryimage\"},\"image\":{\"@id\":\"https:\/\/dev.to\/botreetechnologies\/how-to-scheduled-push-notification-with-firebase-in-react-native-3hcf#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/05\/local-scheduled-push-notifications-in-react-native-app.jpg\",\"datePublished\":\"2020-05-19T08:43:00+00:00\",\"dateModified\":\"2021-09-08T13:29:56+00:00\",\"author\":{\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/#\/schema\/person\/89a990f460a2469ded0784c502b88998\"},\"description\":\"Struggling with react native app to local and scheduled push notifications with firebase? Here's a comprehensive guide for react native app developers to schedule push notifications using firebase.\",\"breadcrumb\":{\"@id\":\"https:\/\/dev.to\/botreetechnologies\/how-to-scheduled-push-notification-with-firebase-in-react-native-3hcf#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dev.to\/botreetechnologies\/how-to-scheduled-push-notification-with-firebase-in-react-native-3hcf\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/dev.to\/botreetechnologies\/how-to-scheduled-push-notification-with-firebase-in-react-native-3hcf#primaryimage\",\"url\":\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/05\/local-scheduled-push-notifications-in-react-native-app.jpg\",\"contentUrl\":\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/05\/local-scheduled-push-notifications-in-react-native-app.jpg\",\"width\":1920,\"height\":1280,\"caption\":\"react native push notifications\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dev.to\/botreetechnologies\/how-to-scheduled-push-notification-with-firebase-in-react-native-3hcf#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.botreetechnologies.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Local, Scheduled Push Notifications in React Native App with Firebase\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/#website\",\"url\":\"https:\/\/www.botreetechnologies.com\/blog\/\",\"name\":\"BoTree Technologies\",\"description\":\"Committed to inspire generation.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.botreetechnologies.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/#\/schema\/person\/89a990f460a2469ded0784c502b88998\",\"name\":\"Rajan Tank\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/10\/rajan-tank-e1612266730294-150x150.png\",\"url\":\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/10\/rajan-tank-e1612266730294-150x150.png\",\"contentUrl\":\"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/10\/rajan-tank-e1612266730294-150x150.png\",\"caption\":\"Rajan Tank\"},\"description\":\"Rajan is React JS Developer. He Love Reading and writing blogs, challenging task and always excited to learn new things. Apart from coding he likes to listen a songs and solo travelling.\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Local, Scheduled Push Notifications in React Native App with Firebase","description":"Struggling with react native app to local and scheduled push notifications with firebase? Here's a comprehensive guide for react native app developers to schedule push notifications using firebase.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/dev.to\/botreetechnologies\/how-to-scheduled-push-notification-with-firebase-in-react-native-3hcf","og_locale":"en_US","og_type":"article","og_title":"Local, Scheduled Push Notifications in React Native App with Firebase","og_description":"Struggling with react native app to local and scheduled push notifications with firebase? Here's a comprehensive guide for react native app developers to schedule push notifications using firebase.","og_url":"https:\/\/dev.to\/botreetechnologies\/how-to-scheduled-push-notification-with-firebase-in-react-native-3hcf","og_site_name":"BoTree Technologies","article_publisher":"https:\/\/www.facebook.com\/BoTreeTechnologies\/","article_published_time":"2020-05-19T08:43:00+00:00","article_modified_time":"2021-09-08T13:29:56+00:00","og_image":[{"width":1920,"height":1280,"url":"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/05\/local-scheduled-push-notifications-in-react-native-app.jpg","type":"image\/jpeg"}],"author":"Rajan Tank","twitter_card":"summary_large_image","twitter_creator":"@BoTreeTech","twitter_site":"@BoTreeTech","twitter_misc":{"Written by":"Rajan Tank","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/dev.to\/botreetechnologies\/how-to-scheduled-push-notification-with-firebase-in-react-native-3hcf#article","isPartOf":{"@id":"https:\/\/www.botreetechnologies.com\/blog\/local-scheduled-push-notifications-in-react-native-app-with-firebase\/"},"author":{"name":"Rajan Tank","@id":"https:\/\/www.botreetechnologies.com\/blog\/#\/schema\/person\/89a990f460a2469ded0784c502b88998"},"headline":"Local, Scheduled Push Notifications in React Native App with Firebase","datePublished":"2020-05-19T08:43:00+00:00","dateModified":"2021-09-08T13:29:56+00:00","mainEntityOfPage":{"@id":"https:\/\/www.botreetechnologies.com\/blog\/local-scheduled-push-notifications-in-react-native-app-with-firebase\/"},"wordCount":552,"commentCount":13,"image":{"@id":"https:\/\/dev.to\/botreetechnologies\/how-to-scheduled-push-notification-with-firebase-in-react-native-3hcf#primaryimage"},"thumbnailUrl":"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/05\/local-scheduled-push-notifications-in-react-native-app.jpg","articleSection":["React Native","Technology"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/dev.to\/botreetechnologies\/how-to-scheduled-push-notification-with-firebase-in-react-native-3hcf#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.botreetechnologies.com\/blog\/local-scheduled-push-notifications-in-react-native-app-with-firebase\/","url":"https:\/\/dev.to\/botreetechnologies\/how-to-scheduled-push-notification-with-firebase-in-react-native-3hcf","name":"Local, Scheduled Push Notifications in React Native App with Firebase","isPartOf":{"@id":"https:\/\/www.botreetechnologies.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/dev.to\/botreetechnologies\/how-to-scheduled-push-notification-with-firebase-in-react-native-3hcf#primaryimage"},"image":{"@id":"https:\/\/dev.to\/botreetechnologies\/how-to-scheduled-push-notification-with-firebase-in-react-native-3hcf#primaryimage"},"thumbnailUrl":"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/05\/local-scheduled-push-notifications-in-react-native-app.jpg","datePublished":"2020-05-19T08:43:00+00:00","dateModified":"2021-09-08T13:29:56+00:00","author":{"@id":"https:\/\/www.botreetechnologies.com\/blog\/#\/schema\/person\/89a990f460a2469ded0784c502b88998"},"description":"Struggling with react native app to local and scheduled push notifications with firebase? Here's a comprehensive guide for react native app developers to schedule push notifications using firebase.","breadcrumb":{"@id":"https:\/\/dev.to\/botreetechnologies\/how-to-scheduled-push-notification-with-firebase-in-react-native-3hcf#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dev.to\/botreetechnologies\/how-to-scheduled-push-notification-with-firebase-in-react-native-3hcf"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/dev.to\/botreetechnologies\/how-to-scheduled-push-notification-with-firebase-in-react-native-3hcf#primaryimage","url":"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/05\/local-scheduled-push-notifications-in-react-native-app.jpg","contentUrl":"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/05\/local-scheduled-push-notifications-in-react-native-app.jpg","width":1920,"height":1280,"caption":"react native push notifications"},{"@type":"BreadcrumbList","@id":"https:\/\/dev.to\/botreetechnologies\/how-to-scheduled-push-notification-with-firebase-in-react-native-3hcf#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.botreetechnologies.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Local, Scheduled Push Notifications in React Native App with Firebase"}]},{"@type":"WebSite","@id":"https:\/\/www.botreetechnologies.com\/blog\/#website","url":"https:\/\/www.botreetechnologies.com\/blog\/","name":"BoTree Technologies","description":"Committed to inspire generation.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.botreetechnologies.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.botreetechnologies.com\/blog\/#\/schema\/person\/89a990f460a2469ded0784c502b88998","name":"Rajan Tank","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/10\/rajan-tank-e1612266730294-150x150.png","url":"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/10\/rajan-tank-e1612266730294-150x150.png","contentUrl":"https:\/\/www.botreetechnologies.com\/blog\/wp-content\/uploads\/2020\/10\/rajan-tank-e1612266730294-150x150.png","caption":"Rajan Tank"},"description":"Rajan is React JS Developer. He Love Reading and writing blogs, challenging task and always excited to learn new things. Apart from coding he likes to listen a songs and solo travelling."}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/posts\/10256","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/users\/60"}],"replies":[{"embeddable":true,"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/comments?post=10256"}],"version-history":[{"count":4,"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/posts\/10256\/revisions"}],"predecessor-version":[{"id":16252,"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/posts\/10256\/revisions\/16252"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/media\/12891"}],"wp:attachment":[{"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/media?parent=10256"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/categories?post=10256"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.botreetechnologies.com\/blog\/wp-json\/wp\/v2\/tags?post=10256"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}