-
Notifications
You must be signed in to change notification settings - Fork 1
/
plugin.xml
31 lines (29 loc) · 1.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
<?xml version='1.0' encoding='utf-8'?>
<plugin id="cordova-plugin-root-safety" version="1.0.0"
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<name>RootAndSignature</name>
<description>Android Plugin</description>
<license>Apache 2.0</license>
<keywords>android, root detection, emulator detection, security, safetynet</keywords>
<engines>
<engine name="cordova" version=">=3.0.0" />
</engines>
<!-- android platform -->
<platform name="android">
<js-module name="plugin" src="www/root-safety.js">
<runs/>
<clobbers target="rootSafety" />
</js-module>
<config-file target="res/xml/config.xml" parent="/*">
<feature name="rootSafety">
<param name="android-package" value="com.snj07.RootSafety" />
<param name="onload" value="true" />
</feature>
</config-file>
<source-file src="src/android/com/snj07/AttestationResponseModel.java" target-dir="src/com/snj07"/>
<source-file src="src/android/com/snj07/SafetyNetHandler.java" target-dir="src/com/snj07"/>
<source-file src="src/android/com/snj07/RootSafety.java" target-dir="src/com/snj07" />
<framework src="src/android/build-extras.gradle" custom="true" type="gradleReference" />
</platform>
</plugin>