Skip to content

Latest commit

 

History

History
44 lines (28 loc) · 878 Bytes

README.md

File metadata and controls

44 lines (28 loc) · 878 Bytes

extension-wake-lock

Lime extension for enabling / disabling automatic screen lock on Android.

Main Features

  • Enable automatic screen locking.
  • Disable automatic screen locking.

How to Install

To install this library, you can simply get the library from haxelib like this:

haxelib install extension-wake-lock

How to Use

To use this extension, simply add the next line in the project.xml

<haxelib name="extension-wake-lock" />

Then, on your hace code:

function someFunction(){
	// to disable screen Lock
	extension.wakeLock.WakeLock.allowScreenTimeout = false;

	// to enable screen Lock
	extension.wakeLock.WakeLock.allowScreenTimeout = true;
}

License

The MIT License (MIT) - LICENSE.md

Copyright © 2015 SempaiGames (http://www.sempaigames.com)

Author: Joacko Bengochea & Federico Bricker