From 97475b1102404286a26dba2f0a1fc9bd9ec2aa9e Mon Sep 17 00:00:00 2001 From: renato Date: Wed, 12 Oct 2016 13:04:48 -0300 Subject: [PATCH] Added comment on FCM.(get/set)BadgeNumber not being available on Android. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b2f7cb2..938e7fd 100644 --- a/README.md +++ b/README.md @@ -289,8 +289,8 @@ class App extends Component { FCM.getScheduledLocalNotifications().then(notif=>console.log(notif)); FCM.cancelLocalNotification("UNIQ_ID_STRING"); FCM.cancelAllLocalNotifications(); - FCM.setBadgeNumber(); - FCM.getBadgeNumber().then(number=>console.log(number)); + FCM.setBadgeNumber(); // iOS only and there's no way to set it in Android, yet. + FCM.getBadgeNumber().then(number=>console.log(number)); // iOS only and there's no way to get it in Android, yet. } } ``` -- 2.26.2