-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
25 lines (22 loc) · 889 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-wkwebview-inputfocusfix" version="1.0.1"
xmlns="http://cordova.apache.org/ns/plugins/1.0"
xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:rim="http://www.blackberry.com/ns/widgets"
xmlns:android="http://schemas.android.com/apk/res/android">
<name>WKWebView Input Focus 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="WKWebViewInputFocusFix">
<param name="ios-package" value="WKWebViewInputFocusFix" />
<param name="onload" value="true" />
</feature>
</config-file>
<header-file src="src/ios/CDVWKWebViewEngine+InputFocusFix.h" />
<source-file src="src/ios/CDVWKWebViewEngine+InputFocusFix.m" />
</platform>
</plugin>