forked from asx-co-jp/cordova-plugin-asreader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
34 lines (32 loc) · 1.32 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
<?xml version='1.0' encoding='utf-8'?>
<plugin id="com.asreader.cdv" version="1.0.1" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>asreader</name>
<js-module name="asreader" src="www/asreader.js">
<clobbers target="asreader" />
</js-module>
<platform name="ios">
<config-file parent="/*" target="config.xml">
<feature name="AsReader">
<param name="ios-package" value="AsReader" />
</feature>
</config-file>
<source-file src="src/ios/AsReader.mm" />
<!-- AsReaderSDK -->
<source-file src="src/ios/RcpLib/libAreteUart.a" framework="true" />
<header-file src="src/ios/RcpLib/Eas.h" />
<header-file src="src/ios/RcpLib/PhyUtility.h" />
<source-file src="src/ios/RcpLib/PhyUtility.m" />
<header-file src="src/ios/RcpLib/RcpBarcodeApi.h" />
<header-file src="src/ios/RcpLib/RcpRfidApi.h" />
<header-file src="src/ios/RcpLib/UartMgr.h" />
<framework src="ExternalAccessory.framework" />
<config-file target="*-Info.plist" parent="UISupportedExternalAccessoryProtocols">
<array>
<string>jp.co.asx.asreader.barcode</string>
<string>jp.co.asx.asreader.rfid</string>
<string>jp.co.asx.asreader.6dongle.barcode</string>
<string>jp.co.asx.asreader.6dongle.rfid</string>
</array>
</config-file>
</platform>
</plugin>