forked from TheMattRay/cordova-plugin-wkwebviewxhrfix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
25 lines (20 loc) · 726 Bytes
/
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
<?xml version='1.0' encoding='utf-8'?>
<plugin id="cordova-plugin-wkwebviewxhrfix" version="0.1.0"
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android">
<name>WKWebView XHR Fix</name>
<license>MIT</license>
<engines>
<engine name="cordova" version=">=3.2.0" />
</engines>
<platform name="ios">
<config-file parent="/*" target="config.xml">
<feature name="WKWebViewXHRFix">
<param name="ios-package" value="WKWebViewXHRFix" />
<param name="onload" value="true" />
</feature>
</config-file>
<header-file src="src/ios/CDVWKWebViewEngine+FileXhrFix.h" />
<source-file src="src/ios/CDVWKWebViewEngine+FileXhrFix.m" />
</platform>
</plugin>