cordova-plugin-rootguard
Version:
Best-effort root, jailbreak, and runtime instrumentation risk detection for Cordova.
41 lines (33 loc) • 1.51 kB
text/xml
<plugin id="cordova-plugin-rootguard" version="2.1.0" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>RootGuard</name>
<description>Root and Frida detection plugin for Cordova</description>
<license>MIT</license>
<keywords>cordova, root detection, frida detection, security</keywords>
<engines>
<engine name="cordova" version=">=9.0.0"/>
</engines>
<js-module src="www/rootguard.js" name="RootGuard">
<clobbers target="RootGuard"/>
</js-module>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="RootGuard">
<param name="android-package" value="com.rootguard.detection.RootGuard"/>
</feature>
</config-file>
<config-file target="AndroidManifest.xml" parent="/*">
<uses-permission android:name="android.permission.INTERNET"/>
</config-file>
<source-file src="src/android/RootGuard.java" target-dir="src/com/rootguard/detection/"/>
</platform>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="RootGuard">
<param name="ios-package" value="RootGuard" />
</feature>
</config-file>
<header-file src="src/ios/RootGuard.h" />
<source-file src="src/ios/RootGuard.m" />
</platform>
</plugin>