forked from don/cordova-plugin-hello
-
Notifications
You must be signed in to change notification settings - Fork 8
/
plugin.xml
44 lines (34 loc) · 1.1 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
<?xml version="1.0" encoding="utf-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="com.example.hello"
version="0.6.0">
<name>Hello</name>
<engines>
<engine name="cordova" version=">=3.4.0"/>
</engines>
<asset src="www/hello.js" target="js/hello.js"/>
<js-module src="www/hello.js" name="hello">
<clobbers target="hello" />
</js-module>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="Hello">
<param name="android-package" value="com.example.plugin.Hello"/>
</feature>
</config-file>
<source-file src="src/android/Hello.java" target-dir="src/com/example/plugin/"/>
</platform>
<platform name="ios">
<plugins-plist key="Hello" string="HWPHello"/>
<header-file src="HWPHello.h"/>
<source-file src="HWPHello.m"/>
</platform>
<platform name="wp7">
<source-file src="src/wp7/Hello.cs"/>
</platform>
<platform name="windows">
<js-module src="src/windows/helloProxy.js" name="HelloProxy">
<merges target="" />
</js-module>
</platform>
</plugin>