-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathplugin.xml
More file actions
27 lines (21 loc) · 918 Bytes
/
plugin.xml
File metadata and controls
27 lines (21 loc) · 918 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="com.Kidobi.plugins.KeepScreenOn"
version="1.0">
<name>KeepScreenOn</name>
<description>Function to turn on and off screen sleep timer</description>
<license>Apache 2.0</license>
<keywords>sleep screen lock Keep Screen On</keywords>
<js-module src="www/js/keepScreenOn.js" name="KeepScreenOn">
<clobbers target="window.keepScreenOn" />
</js-module>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="KeepScreenOn" >
<param name="android-package" value="com.Kidobi.plugins.KeepScreenOn"/>
</feature>
</config-file>
<source-file src="src/android/KeepScreenOn.java" target-dir="src/com/Kidobi/plugins" />
</platform>
</plugin>