-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathplugin.xml
32 lines (29 loc) · 1.23 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-switch"
version="0.3.0">
<name>cordova-plugin-webview-switch</name>
<author>GEDYS IntraWare GmbH</author>
<description>Plugin to switch the webview implementation and webview settings</description>
<license>MIT</license>
<engines>
<engine name="cordova-ios" version=">=4.5.5" />
</engines>
<repo>https://github.com/GEDYSIntraWare/cordova-plugin-webview-switch.git</repo>
<issue>https://github.com/GEDYSIntraWare/cordova-plugin-webview-switch/issues</issue>
<keywords>cordova,webview,wkwebview,ios</keywords>
<js-module src="www/WebviewSwitch.js" name="WebviewSwitch">
<clobbers target="WebviewSwitch"/>
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="WebviewSwitch">
<param name="ios-package" value="WebviewSwitch" />
<param name="onload" value="true" />
</feature>
</config-file>
<source-file src="src/ios/WebviewSwitch.m" />
</platform>
</plugin>