forked from EddyVerbruggen/Flashlight-PhoneGap-Plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
executable file
·68 lines (52 loc) · 1.91 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="nl.x-services.plugins.flashlight"
version="2.0.1">
<name>Flashlight</name>
<description>
This plugin allows you switch the Flashlight / Torch of your device on or off.
</description>
<license>MIT</license>
<engines>
<engine name="cordova" version=">=3.0.0"/>
</engines>
<js-module src="www/Flashlight.js" name="Flashlight">
<clobbers target="window.plugins.flashlight" />
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="Flashlight">
<param name="ios-package" value="Flashlight"/>
</feature>
</config-file>
<header-file src="src/ios/Flashlight.h"/>
<source-file src="src/ios/Flashlight.m"/>
</platform>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="Flashlight">
<param name="android-package" value="nl.xservices.plugins.Flashlight" />
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest">
<uses-permission android:name="android.permission.CAMERA"/>
</config-file>
<source-file src="src/android/nl/xservices/plugins/Flashlight.java" target-dir="src/nl/xservices/plugins"/>
</platform>
<!-- wp8 -->
<platform name="wp8">
<config-file target="config.xml" parent="/*">
<feature name="Flashlight">
<param name="wp-package" value="Flashlight"/>
</feature>
</config-file>
<config-file target="Properties/WMAppManifest.xml" parent="/Deployment/App/Capabilities">
<Capability Name="ID_CAP_ISV_CAMERA"/>
<Capability Name="ID_CAP_MICROPHONE"/>
</config-file>
<source-file src="src/wp8/Flashlight.cs" />
</platform>
</plugin>