-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugin.xml
executable file
·33 lines (26 loc) · 1.1 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://www.phonegap.com/ns/plugins/1.0"
id="cordova-plugin-zsdk"
version="0.1.0">
<name>ZSDK Plugin</name>
<engines>
<engine name="cordova" version=">=3.4.0" />
</engines>
<platform name="android">
<js-module src="www/zsdk.js" name="ZsdkPlugin">
<clobbers target="cordova.plugins.ZsdkPlugin" />
</js-module>
<config-file target="res/xml/config.xml" parent="/*">
<feature name="ZsdkPlugin">
<param name="android-package" value="org.apache.cordova.zsdk.ZsdkPlugin" />
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest">
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
</config-file>
<source-file src="src/android/ZsdkPlugin.java" target-dir="src/org/apache/cordova/zsdk/" />
<source-file src="src/android/libs/ZSDK_ANDROID_API.jar" target-dir="libs" />
</platform>
</plugin>