forked from creox-cz/iosct
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
26 lines (23 loc) · 785 Bytes
/
plugin.xml
File metadata and controls
26 lines (23 loc) · 785 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cz-creox-iosct"
version="0.0.2">
<name>iOS Call Trap</name>
<description></description>
<license>MIT</license>
<keywords></keywords>
<!-- ios -->
<platform name="ios">
<js-module src="www/IOSCT.js" name="IOSCT">
<runs/>
<clobbers target="cordova.plugins.IOSCT" />
</js-module>
<config-file target="config.xml" parent="/*">
<feature name="IOSCT">
<param name="ios-package" value="IOSCT" onload="true" />
</feature>
</config-file>
<header-file src="src/ios/IOSCT.h" />
<source-file src="src/ios/IOSCT.m" />
</platform>
</plugin>