-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.xml
More file actions
38 lines (29 loc) · 1.24 KB
/
plugin.xml
File metadata and controls
38 lines (29 loc) · 1.24 KB
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
<?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="com.webdevs.tapdaq"
version="0.8.2dev">
<name>TapDaq</name>
<description>Add tadaq library</description>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="Tapdaq">
<param name="ios-package" value="TapdaqPlugin" />
<param name="onload" value="true" />
</feature>
</config-file>
<header-file src="src/ios/TapdaqPlugin.h" />
<source-file src="src/ios/TapdaqPlugin.m" />
<source-file src="src/ios/Tapdaq.framework" framework="true" />
<framework src="Security.framework" weak="true" />
<framework src="SystemConfiguration.framework" weak="true" />
<framework src="MobileCoreServices.framework" weak="true" />
<framework src="QuartzCore.framework" weak="true" />
<framework src="CoreGraphics.framework" weak="true" />
<framework src="AdSupport.framework" weak="true" />
</platform>
</plugin>