-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
plugin.xml
34 lines (26 loc) · 1.34 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="com.simonmacdonald.telephonenumber"
version="1.0.0">
<engines>
<engine name="cordova-android" version=">=3.0.0"/>
</engines>
<name>TelephoneNumber</name>
<description>This plugin allows your to get hold of the telephone number from an android device</description>
<author>Simon MacDonald, updated to Cordova 3 by Russell Stather</author>
<keywords>android, phone number</keywords>
<license>MIT</license>
<asset src="www/telephonenumber.js" target="telephonenumber.js" />
<platform name="android">
<source-file src="src/com/simonmacdonald/cordova/plugins/TelephoneNumber.java" target-dir="src/com/simonmacdonald/cordova/plugins" />
<config-file target="res/xml/config.xml" parent="/*">
<feature name="TelephoneNumber" >
<param name="android-package" value="com.simonmacdonald.cordova.plugins.TelephoneNumber"/>
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest">
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
</config-file>
</platform>
</plugin>