-
Notifications
You must be signed in to change notification settings - Fork 14
/
plugin.xml
37 lines (31 loc) · 1.31 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
<?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.joandilee.imeiplugin"
version="0.1">
<engines>
<engine name="cordova" version=">=3.5.0" />
</engines>
<name>IMEI Plugin</name>
<description>Get The Real IMEI Number on Device</description>
<author>Joandi</author>
<license>Apache 2.0</license>
<keywords>cordova,imei</keywords>
<repo>https://github.com/zho/phonegap-imeiplugin.git</repo>
<issue>https://github.com/zho/phonegap-imeiplugin/issues</issue>
<js-module src="www/imeiplugin.js" name="imeiplugin">
<clobbers target="imeiplugin" />
</js-module>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="imeiplugin" >
<param name="android-package" value="com.joandilee.imeiplugin"/>
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/manifest">
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
</config-file>
<source-file src="src/android/imeiplugin.java" target-dir="src/com/joandilee/imeiplugin" />
</platform>
</plugin>