-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugin.xml
executable file
·35 lines (35 loc) · 1.71 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
<?xml version='1.0' encoding='UTF-8'?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova.plugins.unlocksdetector" version="0.2.3">
<name>Jailbreak-Rooting Detector</name>
<author>Luca Caprini (https://github.com/lcaprini)</author>
<description>Cordova Plugin for detecting if the device running the app is jailbroken or rooted</description>
<keywords>cordova, jailbreak, jailbroken, root, rooted, rooting, cydia, detection, detector</keywords>
<license>MIT</license>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<js-module src="www/unlocksDetector.js" name="UnlocksDetector">
<clobbers target="unlocksDetector" />
</js-module>
<platform name="android">
<config-file target="config.xml" parent="/*">
<feature name="UnlocksDetector">
<param name="android-package" value="cordova.plugins.UnlocksDetector" />
<param name="onload" value="true" />
</feature>
</config-file>
<source-file src="src/android/UnlocksDetector.java" target-dir="src/cordova/plugins" />
<source-file src="src/android/Root.java" target-dir="src/cordova/plugins" />
<source-file src="src/android/ExecShell.java" target-dir="src/cordova/plugins" />
</platform>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="UnlocksDetector">
<param name="ios-package" value="UnlocksDetector" />
<param name="onload" value="true" />
</feature>
</config-file>
<header-file src="src/ios/UnlocksDetector.h" />
<source-file src="src/ios/UnlocksDetector.m" />
</platform>
</plugin>