-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
executable file
·28 lines (22 loc) · 984 Bytes
/
plugin.xml
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://www.phonegap.com/ns/plugins/1.0"
id="com.example.screenBrightnessControlPlugin"
version="0.1.0">
<name>ScreeenBrightnessControl</name>
<description>Sample PhoneGap Screen Brightnesss Control Plugin</description>
<license>MIT</license>
<keywords>Summa,Onnum Illa</keywords>
<js-module src="www/js/screenBrightnessControlPlugin.js" name="screenBrightnessControlPlugin">
<clobbers target="window.screenBrightnessControlPlugin" />
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="ScreenBrightnessControl">
<param name="ios-package" value="ScreenBrightnessControl" />
</feature>
</config-file>
<header-file src="src/ios/ScreenBrightnessControl.h" />
<source-file src="src/ios/ScreenBrightnessControl.m" />
</platform>
</plugin>