-
-
Notifications
You must be signed in to change notification settings - Fork 77
/
plugin.xml
56 lines (43 loc) · 2.38 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?xml version='1.0' encoding='UTF-8'?>
<plugin id="cordova-plugin-iroot" version="3.1.0" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>iRoot</name>
<author>Elderov Ali ([email protected])</author>
<description>Jailbreak/Root Detection Plugin for Apache Cordova</description>
<keywords>cordova,jailbreak,jailbroken,cydia,detection,detector,root,rooted,rootBeer,android,ios,iroot,plugin</keywords>
<license>MIT</license>
<repo>https://github.com/WuglyakBolgoink/cordova-plugin-iroot</repo>
<issue>https://github.com/WuglyakBolgoink/cordova-plugin-iroot/issues</issue>
<engines>
<engine name="cordova" version=">=10.0.0"/>
<engine name="cordova-android" version=">=9.0.0" />
<engine name="cordova-ios" version=">=6.0.0" />
</engines>
<js-module name="IRoot" src="www/iroot.js">
<clobbers target="IRoot"/>
</js-module>
<platform name="ios">
<config-file parent="/*" target="config.xml">
<feature name="IRoot">
<param name="ios-package" value="IRoot"/>
<param name="onload" value="true"/>
</feature>
</config-file>
<header-file src="src/ios/IRoot.h"/>
<source-file src="src/ios/IRoot.m"/>
</platform>
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="IRoot">
<param name="android-package" value="de.cyberkatze.iroot.IRoot"/>
<param name="onload" value="true"/>
</feature>
</config-file>
<config-file parent="/*" target="AndroidManifest.xml"/>
<source-file src="src/android/de/cyberkatze/iroot/Constants.java" target-dir="src/de/cyberkatze/iroot"/>
<source-file src="src/android/de/cyberkatze/iroot/CordovaActions.java" target-dir="src/de/cyberkatze/iroot"/>
<source-file src="src/android/de/cyberkatze/iroot/InternalRootDetection.java" target-dir="src/de/cyberkatze/iroot"/>
<source-file src="src/android/de/cyberkatze/iroot/IRoot.java" target-dir="src/de/cyberkatze/iroot"/>
<source-file src="src/android/de/cyberkatze/iroot/Utils.java" target-dir="src/de/cyberkatze/iroot"/>
<framework custom="true" src="src/android/build-extras.gradle" type="gradleReference"/>
</platform>
</plugin>