-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
19 lines (19 loc) · 888 Bytes
/
plugin.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="ccy.plugins.fixedInput" version="0.0.1">
<name>FixedInput</name>
<description>Cordova Plugin</description>
<keywords>cordova,phonegap,input,ios</keywords>
<js-module src="www/js/fixed_input.js" name="FixedInput">
<clobbers target="navigator.fixedInput" />
</js-module>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="FixedInput">
<param name="ios-package" value="FixedInput"/>
</feature>
</config-file>
<header-file src="platforms/ios/FixedInput/Plugins/FixedInput.h" />
<source-file src="platforms/ios/FixedInput/Plugins/FixedInput.m" />
</platform>
</plugin>