-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathplugin.xml
27 lines (27 loc) · 1.35 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
<?xml version='1.0' encoding='utf-8'?>
<plugin id="cordova-plugin-root-detection" version="0.1.1" xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<name>Root Detection</name>
<author>Yury Trykov (http://trykov.ru/)</author>
<description>Cordova Plugin for detecting if the device running the app is rooted.</description>
<keywords>cordova, detection, detector, root, rooted</keywords>
<license>MIT</license>
<repo>https://github.com/trykovyura/cordova-plugin-root-detection</repo>
<issue>https://github.com/trykovyura/cordova-plugin-root-detection/issues</issue>
<engines>
<engine name="cordova" version=">=3.0.0"/>
</engines>
<js-module name="RootDetection" src="www/rootdetection.js">
<clobbers target="rootdetection"/>
</js-module>
<platform name="android">
<config-file parent="/*" target="res/xml/config.xml">
<feature name="RootDetection">
<param name="android-package" value="ru.trykov.root.RootDetection"/>
<param name="onload" value="true"/>
</feature>
</config-file>
<config-file parent="/*" target="AndroidManifest.xml"></config-file>
<source-file src="src/android/RootDetection.java" target-dir="src/ru/trykov/root"/>
</platform>
</plugin>