forked from allada/LineaDevice
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathplugin.xml
41 lines (36 loc) · 1.24 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://cordova.apache.org/ns/plugins/1.0"
id="com.allada.phonegap.webinterface"
version="0.1.0">
<name>Web Interface</name>
<repo>https://github.com/iconum-nl/LineaDevice.git</repo>
<!-- cordova -->
<engines>
<engine name="cordova" version=">=6.0.0" />
<engine name="apple-ios" version=">=10.0.0" />
</engines>
<!-- ios -->
<platform name="ios">
<js-module src="www/ScannerLib-Linea-2.0.0.js" name="ScannerDevice">
<clobbers target="ScannerDevice" />
</js-module>
<config-file target="*-Info.plist" parent="UISupportedExternalAccessoryProtocols">
<array>
<string>com.datecs.linea.pro.msr</string>
<string>com.datecs.linea.pro.bar</string>
</array>
</config-file>
<config-file target="config.xml" parent="/*">
<feature name="LineaDevice">
<param name="ios-package" value="CDVLineaDevice" />
</feature>
</config-file>
<header-file src="src/CDVLineaDevice.h" />
<source-file src="src/CDVLineaDevice.m" />
<header-file src="src/DTDevices.h" />
<source-file src="src/libdtdev.a" framework="true"/>
<framework src="ExternalAccessory.framework" />
<framework src="AudioToolbox.framework" />
<framework src="MediaPLayer.framework" />
</platform>
</plugin>