-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
29 lines (24 loc) · 1.03 KB
/
Copy pathplugin.xml
File metadata and controls
29 lines (24 loc) · 1.03 KB
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
<?xml version='1.0' encoding='utf-8'?>
<plugin
id="com.vodafone.networkoperator"
version="0.0.1"
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<name>NetworkOperator</name>
<DESCRIPTION>Sirve para poder recuperar el operador</DESCRIPTION>
<js-module name="NetworkOperator" src="www/networkoperator.js">
<clobbers target="networkoperator" />
</js-module>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="NetworkOperator">
<param name="android-package" value="com.vodafone.networkoperator.NetworkOperator"/>
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/*">
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
</config-file>
<source-file src="src/android/NetworkOperator.java" target-dir="src/com/vodafone/networkoperator" />
</platform>
</plugin>