-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
32 lines (28 loc) · 955 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova-plugin-hpecho" version="1.0.0">
<name>echo</name>
<description>Cordova Echo Plugin</description>
<keywords>cordova,console,echo</keywords>
<js-module src="www/echo.js" name="echo">
<clobbers target="echo"/>
</js-module>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="Echo">
<param name="ios-package" value="CDVEcho"/>
</feature>
</config-file>
<header-file src="src/ios/CDVEcho.h"/>
<source-file src="src/ios/CDVEcho.m"/>
</platform>
<platform name="browser">
<config-file target="config.xml" parent="/*">
<feature name="Echo">
<param name="browser-package" value="echoProxy"/>
</feature>
</config-file>
<js-module src="src/browser/echoProxy.js" name="echoProxy">
<runs/>
</js-module>
</platform>
</plugin>