This repository has been archived by the owner on Sep 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
plugin.xml
43 lines (37 loc) · 1.6 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
<?xml version="1.0" encoding="UTF-8" ?>
<!--
Copyright (c) 2014 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<plugin xmlns="http://cordova.apache.org/ns/plugins/1.0"
id="cordova-plugin-chrome-apps-bluetoothlowenergy"
version="1.0.4-dev">
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<name>Chrome Apps Bluetooth Low Energy API</name>
<keywords>chrome,bluetooth,BLE,lowenergy</keywords>
<repo>https://github.com/MobileChromeApps/cordova-plugin-chrome-apps-bluetoothLowEnergy.git</repo>
<issue>https://github.com/MobileChromeApps/cordova-plugin-chrome-apps-bluetoothLowEnergy/issues</issue>
<dependency id="cordova-plugin-chrome-apps-bluetooth" version="^1" />
<js-module src="bluetoothLowEnergy.js" name="bluetoothLowEnergy">
<clobbers target="chrome.bluetoothLowEnergy" />
</js-module>
<platform name="android">
<source-file src="src/android/ChromeBluetoothLowEnergy.java" target-dir="src/org/chromium" />
<config-file target="res/xml/config.xml" parent="/widget">
<feature name="ChromeBluetoothLowEnergy">
<param name="android-package" value="org.chromium.ChromeBluetoothLowEnergy" />
</feature>
</config-file>
</platform>
<platform name="ios">
<source-file src="src/ios/ChromeBluetoothLowEnergy.m"/>
<config-file target="config.xml" parent="/widget">
<feature name="ChromeBluetoothLowEnergy">
<param name="ios-package" value="ChromeBluetoothLowEnergy"/>
</feature>
</config-file>
</platform>
</plugin>