forked from jguix/Cordova-Flic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
38 lines (35 loc) · 1.46 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
<?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="cordova-plugin-flic"
version="0.0.1">
<name>ElementeqFlic</name>
<description>A Cordova plugin providing access to the Flic SDK</description>
<license>Apache 2.0</license>
<keywords>cordova,flic,smart,button,sdk</keywords>
<repo></repo>
<issue></issue>
<engines>
<engine name="cordova" version=">=7.1.0"/>
<engine name="cordova-android" version=">=6.3.0"/>
</engines>
<js-module src="www/Flic.js" name="Flic">
<clobbers target="Flic" />
</js-module>
<!-- android -->
<platform name="android">
<!-- Add plugin dependencies -->
<framework src="src/android/cordovaFlic.gradle" custom="true" type="gradleReference" />
<resource-file src="libs/poiclib-release.aar" target="libs/poiclib-release.aar" />
<config-file target="res/xml/config.xml" parent="/*">
<!-- The feature's name attribute should match what you specify as the JavaScript exec call's service parameter.
The value attribute should match the name of the plugin's Java class.
-->
<feature name="Flic" >
<param name="android-package" value="com.elementeq.cordova.Flic"/>
</feature>
</config-file>
<source-file src="src/android/Flic.java" target-dir="src/com/elementeq/cordova" />
<source-file src="src/android/PluginSettings.java" target-dir="src/com/elementeq/cordova" />
</platform>
</plugin>