license: Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

     Unless required by applicable law or agreed to in writing,
     software distributed under the License is distributed on an
     "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
     KIND, either express or implied.  See the License for the
     specific language governing permissions and limitations
     under the License.

Events

Cordova lifecycle events.

Event Types

  • deviceready
  • pause
  • resume
  • online
  • offline
  • backbutton
  • batterycritical
  • batterylow
  • batterystatus
  • menubutton
  • searchbutton
  • startcallbutton
  • endcallbutton
  • volumedownbutton
  • volumeupbutton

Accessing the Feature

As of version 3.0, Cordova implements battery status and other device-level APIs as plugins. Access to all other events not related to battery status are enabled by default. Use the CLI's plugin command, described in The Command-Line Interface, to enable or disable battery events:

    $ cordova plugin add org.apache.cordova.battery-status
    $ cordova plugin ls
    [ 'org.apache.cordova.battery-status' ]
    $ cordova plugin rm org.apache.cordova.battery-status

These commands apply to all targeted platforms, but modify the platform-specific configuration settings described below:

  • Amazon Fire OS

      (in app/res/xml/config.xml)
      <feature name="Battery">
          <param name="android-package" value="org.apache.cordova.batterystatus.BatteryListener" />
      </feature>
    
  • Android

      (in app/res/xml/config.xml)
      <feature name="Battery">
          <param name="android-package" value="org.apache.cordova.batterystatus.BatteryListener" />
      </feature>
    
  • BlackBerry WebWorks

      (in www/plugins.xml)
      <feature name="Battery">
          <param name="blackberry-package" value="org.apache.cordova.battery.Battery" />
      </feature>
    
      (in www/config.xml)
      <feature id="blackberry.app"          required="true" version="1.0.0.0" />
      <feature id="blackberry.app.event"    required="true" version="1.0.0.0" />
      <feature id="blackberry.system.event" required="true" version="1.0.0.0" />
    
  • iOS (in the named application directory's config.xml)

      <feature name="Battery">
          <param name="ios-package" value="CDVBattery" />
      </feature>
    
  • Tizen (in config.xml)

      <feature name="http://tizen.org/api/systeminfo" required="true"/>
    

    Reference: Application Manifest for Tizen Web Application

Some platforms may support this feature without requiring any special configuration. See Platform Support for an overview.