-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
46 lines (38 loc) · 1.53 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="nl.x-services.plugins.sslcertificatechecker"
version="3.3">
<name>SSL Certificate Checker</name>
<description>
This plugin allows allows you to check the SSL Certificate of the server you're connecting to.
This can be useful for prevention of Man In The Middle attacks.
</description>
<license>MIT</license>
<engines>
<engine name="cordova" version=">=3.0.0"/>
</engines>
<js-module name="SSLCertificateChecker" src="www/SSLCertificateChecker.js">
<clobbers target="window.plugins.sslCertificateChecker" />
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="SSLCertificateChecker">
<param name="ios-package" value="SSLCertificateChecker" />
</feature>
</config-file>
<header-file src="src/ios/SSLCertificateChecker.h" />
<source-file src="src/ios/SSLCertificateChecker.m" />
<framework src="Security.framework" />
</platform>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="SSLCertificateChecker">
<param name="android-package" value="nl.xservices.plugins.SSLCertificateChecker" />
</feature>
</config-file>
<source-file src="src/android/nl/xservices/plugins/SSLCertificateChecker.java" target-dir="src/nl/xservices/plugins"/>
</platform>
</plugin>