-
Notifications
You must be signed in to change notification settings - Fork 6
/
plugin.xml
55 lines (46 loc) · 2.59 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
<?xml version="1.0" encoding="utf-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-talsec-plugin-freerasp"
version="7.1.0">
<name>freerasp</name>
<author>Talsec (info@talsec.app)</author>
<description>Cordova plugin for improving app security and threat monitoring on Android and iOS mobile devices.</description>
<keywords>cordova,cordova-plugin,cordova-libraries,freerasp,security,tampering-detection,root-detection,app-shielding,rasp,tampering,reverse-engineering,application-security,frida</keywords>
<license>MIT</license>
<repo>https://github.com/talsec/Free-RASP-Cordova</repo>
<issue>https://github.com/talsec/Free-RASP-Cordova/issues</issue>
<engines>
<engine name="cordova" version=">=9.0.0"/>
</engines>
<asset src="www/talsec.js" target="js/talsec.js"/>
<js-module src="www/talsec.js" name="talsec">
<clobbers target="talsec" />
</js-module>
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<preference name="GradlePluginKotlinEnabled" value="true" />
<preference name="GradlePluginKotlinCodeStyle" value="official" />
<preference name="GradlePluginKotlinVersion" value="1.7.10" />
<feature name="TalsecPlugin">
<param name="android-package" value="com.aheaditec.talsec.cordova.TalsecPlugin"/>
</feature>
</config-file>
<source-file src="src/android/TalsecPlugin.kt" target-dir="app/src/main/kotlin/com/aheaditec/talsec/cordova/"/>
<source-file src="src/android/TalsecThreatHandler.kt" target-dir="app/src/main/kotlin/com/aheaditec/talsec/cordova/"/>
<source-file src="src/android/Threat.kt" target-dir="app/src/main/kotlin/com/aheaditec/talsec/cordova/"/>
<source-file src="src/android/models/CordovaSuspiciousAppInfo.kt" target-dir="app/src/main/kotlin/com/aheaditec/talsec/cordova/models/"/>
<source-file src="src/android/utils/Extensions.kt" target-dir="app/src/main/kotlin/com/aheaditec/talsec/cordova/utils/"/>
<source-file src="src/android/utils/Utils.kt" target-dir="app/src/main/kotlin/com/aheaditec/talsec/cordova/utils/"/>
<framework src="src/android/talsec.gradle" custom="true" type="gradleReference" />
</platform>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="TalsecPlugin">
<param name="ios-package" value="TalsecPlugin"/>
</feature>
</config-file>
<header-file src="src/ios/TalsecBridging-Header.h" />
<source-file src="src/ios/TalsecPlugin.swift" />
<framework src="src/ios/TalsecRuntime.xcframework" custom="true" embed="true" />
</platform>
</plugin>