forked from GEDYSIntraWare/cordova-plugin-webview-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
32 lines (29 loc) · 1.24 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
<?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="cordova-plugin-webview-proxy"
version="0.0.3">
<name>cordova-plugin-webview-proxy</name>
<author>GEDYS IntraWare GmbH</author>
<description>Proxy HTTP(S) requests through native code to make CORS and Cookies work in cordova-ios</description>
<license>MIT</license>
<engines>
<engine name="cordova-ios" version=">=6.2.0" />
</engines>
<repo>https://github.com/GEDYSIntraWare/cordova-plugin-webview-proxy.git</repo>
<issue>https://github.com/GEDYSIntraWare/cordova-plugin-webview-proxy/issues</issue>
<keywords>cordova,webview,wkwebview,ios</keywords>
<js-module src="www/WebviewProxy.js" name="WebviewProxy">
<clobbers target="WebviewProxy"/>
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="WebviewProxy">
<param name="ios-package" value="WebviewProxy" />
<param name="onload" value="true" />
</feature>
</config-file>
<source-file src="src/ios/WebviewProxy.m" />
</platform>
</plugin>