-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathplugin.xml
executable file
·76 lines (59 loc) · 2.1 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
69
70
71
72
73
74
75
76
<?xml version="1.0" encoding="UTF-8"?>
<plugin
xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-plugin-actionsheet"
version="2.3.3">
<name>ActionSheet</name>
<description>Show a sheet of options the user can choose from.</description>
<author>Eddy Verbruggen</author>
<license>MIT</license>
<keywords>ActionSheet, UIActionSheet, AlertDialog, Dialog, List, Picker, Popup</keywords>
<repo>https://github.com/EddyVerbruggen/cordova-plugin-actionsheet.git</repo>
<issue>https://github.com/EddyVerbruggen/cordova-plugin-actionsheet/issues</issue>
<engines>
<engine name="cordova" version=">=3.0.0"/>
</engines>
<js-module src="www/ActionSheet.js" name="ActionSheet">
<clobbers target="window.plugins.actionsheet"/>
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="ActionSheet">
<param name="ios-package" value="ActionSheet"/>
</feature>
</config-file>
<header-file src="src/ios/ActionSheet.h"/>
<source-file src="src/ios/ActionSheet.m"/>
</platform>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="ActionSheet">
<param name="android-package" value="nl.xservices.plugins.actionsheet.ActionSheet"/>
</feature>
</config-file>
<source-file src="src/android/ActionSheet.java" target-dir="src/nl/xservices/plugins/actionsheet"/>
</platform>
<!-- wp8 -->
<platform name="wp8">
<config-file target="config.xml" parent="/*">
<feature name="ActionSheet">
<param name="wp-package" value="ActionSheet"/>
</feature>
</config-file>
<source-file src="src/wp8/ActionSheet.cs" />
</platform>
<!--windows-->
<platform name="windows">
<js-module src="src/windows/ActionSheetProxy.js" name="ActionSheetProxy">
<merges target="" />
</js-module>
</platform>
<!--browser-->
<platform name="browser">
<js-module src="src/browser/ActionSheetProxy.js" name="ActionSheetProxy">
<merges target="" />
</js-module>
</platform>
</plugin>