-
Notifications
You must be signed in to change notification settings - Fork 8
/
plugin.xml
46 lines (39 loc) · 1.45 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="mi-plugin"
version="1.0.0">
<name>Cordova Plugin Template</name>
<description></description>
<license>MIT</license>
<keywords></keywords>
<repo>https://github.com/thecouk/ionic-cordova-plugin-template.git</repo>
<!-- android -->
<platform name="android">
<js-module src="www/plugin.js" name="plugin">
<runs/>
<!-- Este es el nombre por el cual se accedera el plugin -->
<clobbers target="MiPlugin" />
</js-module>
<config-file target="res/xml/config.xml" parent="/*">
<feature name="MiPlugin">
<param name="android-package" value="com.example.MiPlugin" />
<param name="onload" value="true" />
</feature>
</config-file>
<source-file src="src/android/com/example/MiPlugin.java" target-dir="src/com/example/" />
</platform>
<!-- ios -->
<platform name="ios">
<js-module src="www/plugin.js" name="plugin">
<runs/>
<clobbers target="MiPlugin" />
</js-module>
<config-file target="config.xml" parent="/*">
<feature name="MiPlugin">
<param name="ios-package" value="MiPlugin" onload="true" />
</feature>
</config-file>
<header-file src="src/ios/MiPlugin.h" />
<source-file src="src/ios/MiPlugin.m" />
</platform>
</plugin>