-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
28 lines (28 loc) · 1.58 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
<?xml version='1.0' encoding='utf-8'?>
<plugin id="me.rahul.plugins.mockgeolocation" version="0.0.1" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>mockgeolocation</name>
<description>Detect Fake Geolocation Coordinates</description>
<license>Apache 2.0</license>
<author>Rahul Pandey</author>
<keywords>cordova fake geolocation, cordova mock geolocation, phonegap fake geolocation, phonegap mock geolocation, fake geolocation, mock geolocation</keywords>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<js-module name="mockgeolocation" src="www/mockgeolocation.js">
<clobbers target="window.plugins.mockgeolocation" />
</js-module>
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="mockgeolocation">
<param name="android-package" value="me.rahul.plugins.mockgeolocation.mockgeolocation" />
</feature>
</config-file>
<config-file parent="/*" target="AndroidManifest.xml">
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-feature android:name="android.hardware.location.gps" />
</config-file>
<source-file src="src/android/mockgeolocation.java" target-dir="src/me/rahul/plugins/mockgeolocation/" />
<framework src="com.google.android.gms:play-services-location:+" />
</platform>
</plugin>