-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
61 lines (46 loc) · 1.89 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
<?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="cordova.plugin.p2pkit.ios"
version="0.1.0">
<name>P2PKitCordovaPluginiOS</name>
<description>P2PKit Cordova Plugin for iOS</description>
<author>qnodesign</author>
<license>Apache 2.0</license>
<!-- cordova -->
<engines>
<engine name="cordova" version=">=3.6.0" />
<engine name="cordova-plugman" version=">=4.3.0" />
<engine name="cordova-windows" version=">=4.2.0" />
</engines>
<!-- dependencies -->
<dependency id="cordova-plugin-device" />
<dependency id="cordova-plugin-app-event" />
<!-- info -->
<info>
Your support is needed. If you use the p2pkit plugin please support us in order to ensure further development.
https://github.com/qnodesign/p2pkit.cordova.plugin#supporting
Thank you!
</info>
<!-- js -->
<js-module src="www/p2pkit.js" name="P2PKit">
<clobbers target="cordova.plugins.p2pkit" />
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="P2PKit">
<param name="ios-package" value="APPP2PKit" onload="true" />
<param name="onload" value="true" />
</feature>
</config-file>
<header-file src="src/ios/APPP2PKit.h" />
<source-file src="src/ios/APPP2PKit.m" />
<header-file src="src/ios/APPP2PKitOptions.h" />
<source-file src="src/ios/APPP2PKitOptions.m" />
<header-file src="src/ios/UIApplication+APPP2PKit.h" />
<source-file src="src/ios/UIApplication+APPP2PKit.m" />
<header-file src="src/ios/UIP2PKit+APPP2PKit.h" />
<source-file src="src/ios/UIP2PKit+APPP2PKit.m" />
</platform>
</plugin>