forked from hfeeki/bluetooth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
106 lines (94 loc) · 5.11 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
98
99
100
101
102
103
104
105
106
<?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"
version="0.5.0">
<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="bcsphere.bcjs">
<clobber target="BC" />
</js-module>
<js-module src="www/org.bcsphere.bluetooth/bluetoothapi.js" name="bcsphere.bluetooth.bluetoothapi">
<merges target="navigator.bluetooth" />
</js-module>
<js-module src="www/org.bluetooth.profile/proximity.js" name="bluetooth.profile.proximity">
<merges target="BC" />
</js-module>
<js-module src="www/org.bluetooth.profile/find_me.js" name="bluetooth.profile.find_me">
<merges target="BC" />
</js-module>
<js-module src="www/org.bluetooth.profile/serial_port.js" name="bluetooth.profile.serial_port">
<merges target="BC" />
</js-module>
<js-module src="www/org.bluetooth.service/battery_service.js" name="bluetooth.service.battery_service">
<merges target="BC" />
</js-module>
<js-module src="www/org.bluetooth.service/blood_pressure.js" name="bluetooth.service.blood_pressure">
<merges target="BC" />
</js-module>
<js-module src="www/org.bluetooth.service/health_thermometer.js" name="bluetooth.service.health_thermometer">
<merges target="BC" />
</js-module>
<js-module src="www/org.bluetooth.service/immediate_alert.js" name="bluetooth.service.immediate_alert">
<merges target="BC" />
</js-module>
<js-module src="www/org.bluetooth.service/link_loss.js" name="bluetooth.service.link_loss">
<merges target="BC" />
</js-module>
<js-module src="www/org.bluetooth.service/serial_port.js" name="bluetooth.service.serial_port">
<merges target="BC" />
</js-module>
<js-module src="www/org.bluetooth.service/tx_power.js" name="bluetooth.service.tx_power">
<merges target="BC" />
</js-module>
<js-module src="www/org.bcsphere.ibeacon/ibeaconapi.js" name="bcsphere.ibeacon.ibeaconapi">
<merges target="navigator.ibeacon" />
</js-module>
<js-module src="www/org.bcsphere/ibeacon.js" name="bcsphere.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">
<uses-library android:name="com.htc.android.bluetooth.le" android:required="false" />
</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/BluetoothSam42.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/BluetoothHTC41.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" />
<source-file src="libs/samsung_ble_sdk_200.jar" target-dir="libs" />
<!--source-file src="libs/com.htc.android.bluetooth.le.jar" target-dir="com.htc.android.bluetooth.le" / -->
</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>