Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dbankier/tikeyguard-android

Appcelerator/Titanium module to unlock and power on an Android device.
https://github.com/dbankier/tikeyguard-android

Last synced: 2 months ago
JSON representation

Appcelerator/Titanium module to unlock and power on an Android device.

Awesome Lists containing this project

README

        

I needed a way of turning on and unlocking the screen of my Android device for an incoming SIP call.
Here is the module.

You need to include the module in the tiapp.xml:
com.yydigital.keyguard

You also need to add these permissions:


Then the code is something like this:

var keyguard = require("com.yydigital.keyguard");

To disable the keyguard:
keyguard.disable();

To turn on the screen:
keyguard.wakeUp();

To enable the keyguard again:
keyguard.enable();