Skip to content
This repository has been archived by the owner on May 17, 2022. It is now read-only.
/ Battery-ANE Public archive

AIR Native Extension to access various information about the battery of the device the app is running on.

Notifications You must be signed in to change notification settings

myflashlab/Battery-ANE

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 

Repository files navigation

Battery ANE for Android+iOS

You can know the battery level of the device in your app and also, events will be dispatched when the battery state changes. You will know if the device is charging or not!

find the latest asdoc for this ANE here.

AIR Usage

For the complete AS3 code usage, see the demo project here.

import com.myflashlab.air.extensions.battery.*;

// init the ANE and add the listener to know when the battery state changes
Battery.init();
Battery.listener.addEventListener(BatteryEvents.BATTERY_STATE, onBatteryStateChanged);

function onBatteryStateChanged(e:BatteryEvents):void
{
	/*
		BatteryState.FULL
		BatteryState.CHARGING
		BatteryState.DISCHARGING
	*/
	trace("onBatteryStateChanged: " + e.state);
}

// get the current device's battery level
trace("batteryLevel: " + Battery.batteryLevel);

Air .xml manifest

<!--
Embedding the ANE:
-->
  <extensions>
	<extensionID>com.myflashlab.air.extensions.battery</extensionID>
	
	<!-- dependency ANEs https://github.com/myflashlab/common-dependencies-ANE -->
	<extensionID>com.myflashlab.air.extensions.dependency.overrideAir</extensionID>
  </extensions>
-->

Requirements

  • Android API 19+
  • iOS SDK 10.0+
  • AIR SDK 31.0+

Commercial Version

https://www.myflashlabs.com/product/battery-ane-adobe-air-native-extension/

Battery ANE

Tutorials

How to embed ANEs into FlashBuilder, FlashCC and FlashDevelop

Premium Support

Premium Support package If you are an active MyFlashLabs club member, you will have access to our private and secure support ticket system for all our ANEs. Even if you are not a member, you can still receive premium help if you purchase the premium support package.

About

AIR Native Extension to access various information about the battery of the device the app is running on.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published