-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugin.xml
33 lines (27 loc) · 1.36 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
<?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.emisys.cordova.nfc.NfcAcr122Plugin"
version="0.0.1">
<name>NFC ACR122 Plugin</name>
<description>This is an experimental project to use an external NFC reader from Android.</description>
<license>Apache 2.0</license>
<keywords>cordova,plugin,nfc,acr122</keywords>
<repo>https://github.com/Legenyes/cordova-nfc-acr122-plugin</repo>
<issue>https://github.com/Legenyes/cordova-nfc-acr122-plugin/issues</issue>
<engines>
<engine name="cordova-android" version=">=3.6.0" /><!-- Requires CordovaPlugin.preferences -->
</engines>
<js-module src="www/plugin.js" name="NFC ACR122">
<clobbers target="cordova.plugins.nfc-acr122" />
</js-module>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="NfcAcr122Plugin" >
<param name="android-package" value="com.emisys.cordova.nfc.NfcAcr122Plugin"/>
</feature>
</config-file>
<source-file src="src/android/NfcAcr122Plugin.java" target-dir="src/com/emisys/cordova/nfc"/>
<source-file src="src/android/libs/acssmc-1.1.3.jar" target-dir="libs" framework="true"/>
</platform>
</plugin>