-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
35 lines (27 loc) · 1.13 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-plugin-smartlook"
version="1.0.0">
<name>Cordova Smartlook Plugin</name>
<description></description>
<license>MIT</license>
<keywords>cordova,smartlook,plugin</keywords>
<repo>https://github.com/driftyco/cordova-plugin-template.git</repo>
<issue>https://github.com/driftyco/cordova-plugin-template/issues</issue>
<engines>
<engine name="cordova" version=">=3.6.0"></engine>
</engines>
<js-module src="www/smartlook.js" name="smartlook">
<clobbers target="smartlook" />
</js-module>
<!-- android -->
<platform name="android">
<source-file src="src/android/com/smartlook/SmartlookPlugin.java" target-dir="src/com/smartlook" />
<config-file target="res/xml/config.xml" parent="/*">
<feature name="SmartlookPlugin">
<param name="android-package" value="com.smartlook.SmartlookPlugin" />
</feature>
</config-file>
<framework src="src/android/plugin.gradle" custom="true" type="gradleReference" />
</platform>
</plugin>