display badge number in Android using cordova -
i writing android cordova application.i want display notification count in app icon same below image. using local notification plugin notification how can display badge number in app icon. tried badge plugin of cordova. https://github.com/katzer/cordova-plugin-badge it's not working in android.
thanks in advance.
this may set badge
cordova.plugins.notification.badge.set(1);
also check $cordovabadge
module.controller('myctrl', function($cordovabadge) { $cordovabadge.set(3).then(function() { // have permission, badge set. }, function(err) { // not have permission. }); });
for more see this
Comments
Post a Comment