-
Notifications
You must be signed in to change notification settings - Fork 1
/
plugin.xml
37 lines (37 loc) · 1.95 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin id="bluetherm-thermaq" version="1.1.4" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>BlueThermThermaQ</name>
<js-module name="BlueThermThermaQ" src="www/BlueThermThermaQ.js">
<clobbers target="cordova.plugins.BlueThermThermaQ" />
</js-module>
<platform name="ios">
<config-file parent="/*" target="config.xml">
<feature name="BlueThermThermaQ">
<param name="ios-package" value="BlueThermThermaQ" />
</feature>
</config-file>
<source-file src="src/ios/Library/libThermaLib.a" framework="true" />
<header-file src="src/ios/Library/include/ThermaLib/ThermaLib.h"/>
<header-file src="src/ios/Library/include/ThermaLib/TLDateStamp.h"/>
<header-file src="src/ios/Library/include/ThermaLib/TLDevice.h"/>
<header-file src="src/ios/Library/include/ThermaLib/TLRange.h"/>
<header-file src="src/ios/Library/include/ThermaLib/TLRemoteSettings.h"/>
<header-file src="src/ios/Library/include/ThermaLib/TLSensor.h"/>
<header-file src="src/ios/Library/include/ThermaLib/TLSimDevice.h"/>
<header-file src="src/ios/Library/include/ThermaLib/TLSimSensor.h"/>
<header-file src="src/ios/Library/include/ThermaLib/TLUtils.h"/>
<source-file src="src/ios/BlueThermThermaQ.m" />
</platform>
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="BlueThermThermaQ">
<param name="android-package" value="BlueThermThermaQ.BlueThermThermaQ" />
</feature>
</config-file>
<config-file parent="/*" target="AndroidManifest.xml">
</config-file>
<framework src="src/android/thermalib.gradle" custom="true" type="gradleReference" />
<lib-file src="src/android/thermalib-release.aar" />
<source-file src="src/android/BlueThermThermaQ.java" target-dir="src/BlueThermThermaQ" />
</platform>
</plugin>