forked from hfeeki/bluetooth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
97 lines (87 loc) · 4.48 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<?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="org.bcsphere.bluetooth" version="0.5.1">
<name>Bluetooth</name>
<description>The "BCSphere/Bluetooth" is a professional Bluetooth plugin. It is the core implementation of Universal Bluetooth JavaScript API by a Bluetooth expert team. It supports both Bluetooth 4.0 GATT interface in iOS/Android and Bluetooth 2.1 Classical interface in Android.</description>
<license>Apache 2.0</license>
<keywords>bcsphere,bluetooth,ibeacon</keywords>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<js-module src="www/org.underscorejs.underscore/underscore.js" name="underscorejs.underscore">
<clobber target="_" />
</js-module>
<js-module src="www/org.bcsphere/bc.js" name="bcjs">
<merges target="BC" />
</js-module>
<js-module src="www/org.bcsphere.bluetooth/bluetoothapi.js" name="bluetoothapi">
<merges target="navigator.bluetooth" />
</js-module>
<!-- <js-module src="www/org.bluetooth.profile/proximity.js" name="profile.proximity">
<merges target="BC" />
</js-module>
<js-module src="www/org.bluetooth.profile/find_me.js" name="profile.find_me">
<merges target="BC" />
</js-module>
<js-module src="www/org.bluetooth.profile/serial_port.js" name="profile.serial_port">
<merges target="BC" />
</js-module>
<js-module src="www/org.bluetooth.service/battery_service.js" name="service.battery_service">
<merges target="BC" />
</js-module>
<js-module src="www/org.bluetooth.service/blood_pressure.js" name="service.blood_pressure">
<merges target="BC" />
</js-module>
<js-module src="www/org.bluetooth.service/health_thermometer.js" name="service.health_thermometer">
<merges target="BC" />
</js-module>
<js-module src="www/org.bluetooth.service/immediate_alert.js" name="service.immediate_alert">
<merges target="BC" />
</js-module>
<js-module src="www/org.bluetooth.service/link_loss.js" name="service.link_loss">
<merges target="BC" />
</js-module>
<js-module src="www/org.bluetooth.service/serial_port.js" name="service.serial_port">
<merges target="BC" />
</js-module>
<js-module src="www/org.bluetooth.service/tx_power.js" name="service.tx_power">
<merges target="BC" />
</js-module>
<js-module src="www/org.bcsphere.ibeacon/ibeaconapi.js" name="ibeacon.ibeaconapi">
<merges target="navigator.ibeacon" />
</js-module>
<js-module src="www/org.bcsphere/ibeacon.js" name="ibeacon">
<merges target="BC" />
</js-module> -->
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="BCBluetooth">
<param name="android-package" value="org.bcsphere.bluetooth.BCBluetooth"/>
</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"/>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest/application">
</config-file>
<source-file src="src/android/org/bcsphere/bluetooth/BCBluetooth.java" target-dir="src/org/bcsphere/bluetooth" />
<source-file src="src/android/org/bcsphere/bluetooth/IBluetooth.java" target-dir="src/org/bcsphere/bluetooth" />
<source-file src="src/android/org/bcsphere/bluetooth/BluetoothG43plus.java" target-dir="src/org/bcsphere/bluetooth" />
<source-file src="src/android/org/bcsphere/bluetooth/BluetoothSerialService.java" target-dir="src/org/bcsphere/bluetooth" />
<source-file src="src/android/org/bcsphere/bluetooth/tools/BluetoothDetection.java" target-dir="src/org/bcsphere/bluetooth/tools" />
<source-file src="src/android/org/bcsphere/bluetooth/tools/Tools.java" target-dir="src/org/bcsphere/bluetooth/tools" />
</platform>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="BCBluetooth">
<param name="ios-package" value="BCBluetooth"/>
</feature>
</config-file>
<header-file src="src/ios/BCBluetooth.h" />
<source-file src="src/ios/BCBluetooth.m" />
<framework src="CoreBluetooth.framework" weak="true" />
</platform>
</plugin>