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

Android volley - avoid multiple requests of the same kind to the server? -

magento2 - Magento 2 admin grid add filter to collection -

Combining PHP Registration and Login into one class with multiple functions in one PHP file -