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.

enter image description here

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

Popular posts from this blog

Lists in Python -

android - can not access to progress bar in an other activity -

html - Not able to access next element of an array javascript -