-
Notifications
You must be signed in to change notification settings - Fork 7
/
plugin.xml
51 lines (45 loc) · 1.59 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="@queue-it/cordova-sdk" version="0.1.9">
<name>cordova-sdk</name>
<description>Queue-It Cordova Plugin</description>
<license>MIT</license>
<keywords>queue-it, cordova, plugin</keywords>
<js-module src="www/queueit.js" name="queueit">
<runs/>
<clobbers target="QueueIt" />
</js-module>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="QueueIt" >
<param name="android-package" value="com.queueit.QueueIt"/>
</feature>
</config-file>
<framework src="com.queue-it.androidsdk:library:2.0.34"/>
<source-file src="src/android/QueueIt.java" target-dir="src/com/queueit" />
<edit-config file="AndroidManifest.xml"
target="/manifest/application"
mode="merge">
<application android:allowBackup="false"/>
</edit-config>
</platform>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="QueueIt">
<param name="ios-package" value="CPQueueIt" />
</feature>
</config-file>
<podspec>
<config>
<source url="https://github.com/brightcove/BrightcoveSpecs.git" />
<source url="https://github.com/CocoaPods/Specs.git"/>
</config>
<pods use-frameworks="true">
<pod name="QueueITLibrary" spec="3.0.14" />
</pods>
</podspec>
<header-file src="src/ios/CPQueueIt.h" />
<source-file src="src/ios/CPQueueIt.m" />
</platform>
</plugin>