-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
35 lines (27 loc) · 1.18 KB
/
plugin.xml
File metadata and controls
35 lines (27 loc) · 1.18 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
30
31
32
33
34
35
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-plugin-mockchecker"
version="1.0.0">
<name>MockGpsChecker</name>
<description>Detect GPS Spoofing in Android Platform.</description>
<js-module src="www/mockgps.js" name="MockChecker">
<clobbers target="mockchecker" />
</js-module>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="MockChecker">
<param name="android-package" value="bosowa.hris.cordova.MockChecker"/>
</feature>
</config-file>
<!--
<framework src="com.google.android.gms:play-services-location:11.4.2" />
-->
<!-- <framework src="com.google.android.gms:play-services-location:9.8.0" /> -->
<framework src="com.google.android.gms:play-services-location:15.0.1" />
<config-file target="AndroidManifest.xml" parent="/*">
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
</config-file>
<source-file src="src/android/MockChecker.java" target-dir="src/bosowa/hris/cordova"/>
</platform>
</plugin>