-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
26 lines (21 loc) · 856 Bytes
/
plugin.xml
File metadata and controls
26 lines (21 loc) · 856 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="com.discotech.contact"
version="0.1.0">
<name>Calendar</name>
<description>Phonegap conatct us plugin</description>
<license>MIT</license>
<keywords>phonegap,SMS, Email, Call</keywords>
<js-module src="www/ContactUs.js" name="Contact">
<clobbers target="window.contact" />
</js-module>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="Contact">
<param name="android-package" value="com.discotech.contact.Contact"/>
</feature>
</config-file>
<source-file src="src/android/Contact.java" target-dir="src/com/discotech/contact" />
</platform>
</plugin>