Skip to content

fidoboy/cordova-plugin-badge

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

97 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EXAMPLE 👉

Cordova Badge Plugin

Cordova plugin to access and modify the badge number of the app icon on various mobile platforms including iOS, Android and Windows Phone.

  

  

Overview

  1. Supported Platforms
  2. Installation
  3. ChangeLog
  4. Using the plugin
  5. Examples
  6. Quirks

Supported Platforms

  • iOS (including iOS8)
  • Android (SDK >=11)
    See Notification Guide for detailed informations and screenshots.
  • WP8
    See WP8 Guide for detailed informations and screenshots.

Installation

The plugin can either be installed from git repository, from local file system through the Command-line Interface. Or cloud based through PhoneGap Build.

Local development environment

From master:

# ~~ from master branch ~~
cordova plugin add https://github.com/katzer/cordova-plugin-badge.git

from a local folder:

# ~~ local folder ~~
cordova plugin add de.appplant.cordova.plugin.badge --searchpath path/to/plugin

or to use the last stable version:

# ~~ stable version ~~
cordova plugin add de.appplant.cordova.plugin.badge@0.6.1

PhoneGap Build

Add the following xml to your config.xml to always use the latest version of this plugin:

<gap:plugin name="de.appplant.cordova.plugin.badge" version="0.6.1" />

More informations can be found here.

ChangeLog

Version 0.6.1 (03.10.2014)

  • [bugfix:] hasPermission and promptForPermission let the app crash on iOS7 and older.

Version 0.6.0 (29.09.2014)

  • [enhancement:] iOS 8 support
  • [enhancement:] All methods are now asynchron and do not block the main thread anymore.
  • [feature:] New method hasPermission to ask if the user has granted to display badge notifications.
  • [feature:] New method promptForPermission to promt the user to grant permission to display badge notifications.
  • [feature:] New method configure to configure badge properties.
  • [feature:] The small icon on Android can be changed through configure.
  • [change:] The namespace plugin.notification.badge will be removed with v0.6.1
  • [change:] setTitle is deprecated, please use configure({ title: 'title' }).
  • [change:] clearOnTap is deprecated, please use configure({ autoClear: true }).
  • [bugfix:] getBadge still returned the number when autoClear: was set and the notification was already cleared by the system (Android).
  • [bugfix:] clean was not working on Windows Phone.

Further informations

  • See CHANGELOG.md to get the full changelog for the plugin.

Using the plugin

The plugin creates the object cordova.plugins.notification.badge with the following methods:

  1. notification.badge.hasPermission
  2. notification.badge.promptForPermission
  3. notification.badge.set
  4. notification.badge.get
  5. notification.badge.clear
  6. notification.badge.configure

Note: The previous namespace plugin.notification.badge will be removed with v0.6.1

Plugin initialization

The plugin and its methods are not available before the deviceready event has been fired.

document.addEventListener('deviceready', function () {
    // cordova.plugins.notification.badge is now available
}, false);

Determine if the app does have the permission to show badge notifications

If the permission has been granted through the user can be retrieved through the notification.badge.hasPermission interface.
The method takes a callback function as its argument which will be called with a boolean value. Optional the scope of the callback function ca be defined through a second argument.

Further informations

  • The method is supported on each platform, however its only relevant for iOS8 and above.
cordova.plugins.notification.badge.hasPermission(function (granted) {
    // console.log('Permission has been granted: ' + granted);
});

Prompt the user to grant permission for badge notifications

The user can be prompted to grant the required permission through the notification.badge.promptForPermission interface.

Further informations

  • The method is supported on each platform, however its only relevant for iOS8 and above.
  • The user will only get a prompt dialog for the first time. Later its only possible to change the setting via the notification center.
cordova.plugins.notification.badge.promptForPermission();

Set the badge number

The badge number can be set through the notification.badge.set interface.
The method takes the badge as its argument. It needs to be a number or a string which can be parsed to a number.

Further informations

  • The badge number can only be set if the user has previously granted the required permission.
  • On Android the badge will be displayed through a notification. See configure how to specify a custom notification title.
  • On Windows Phone 8 the badge will be displayed through the app's live tile.
  • See get how to get back the current badge number.
  • See clear of how to clear the badge number.
  • See the examples of how to use the plugin.
cordova.plugins.notification.badge.set(Number);

Get the badge number

The badge number can be accessed through the notification.badge.get interface.
The method takes a callback function as its argument which will be called with the badge number. Optional the scope of the callback function ca be defined through a second argument.

cordova.plugins.notification.badge.get(function (badge) {
	// console.log('badge number: ' + badge);
}, scope);

Clear the badge number

The badge number can be removed through the notification.badge.clear interface.

Further informations

  • Clearing the badge number is equivalent to set a zero number.
  • See configure how to clear the badge automatically after the user has taped the app icon.
  • See set of how to set the badge number.
cordova.plugins.notification.badge.clear();

Clear the badge number automatically if the user taps the app icon

The badge number can be cleared automatically after the user has taped the app icon. The default value is false.

cordova.plugins.notification.badge.configure({ autoClear: Boolean });

Examples

Please see the Example branch for more examples and a running example app.

Set the badge number

The following example shows how to set the badge number to 1.

cordova.plugins.notification.badge.set(1);

Note: The badge number can only be set if the user has granted the required permission.

Clear the badge number

See below how to clear the badge number.

cordova.plugins.notification.badge.clear();

Clear the badge number automatically if the user taps the app icon

The code below tells the plugin to clear the badge each time the user taps the app icon.

cordova.plugins.notification.badge.configure({ autoClear: true });

Platform specifics

Specify custom notification title on Android

The default format for the title is %d new messages, but is customizable through configure.

cordova.plugins.notification.badge.configure({ title: '%d neue Meldungen' });

Specify small icon on Android

As default the email icon is used, but is customizable through configure.

cordova.plugins.notification.badge.configure({ smallIcon: 'icon' });

Note: A small icon is required.

Quirks

App crashes on iOS

Please note that the plugin as well as cordova need to be compiled for each iOS version. The compiled iOS8 code will crash for example under iOS7.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

License

This software is released under the Apache 2.0 License.

© 2013-2014 appPlant UG, Inc. All rights reserved

About

Cordova plugin to access and modify the badge of the app icon

Resources

License

Stars

Watchers

Forks

Packages

No packages published