forked from fidoboy/input-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
executable file
·42 lines (36 loc) · 1.75 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
33
34
35
36
37
38
39
40
41
42
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="eg.com.Lifetime.plugins.nativeinput" version="0.0.1">
<name>NativeInput</name>
<description>Cordova Native Input Plugin - forked from AppGyver Native Input Plugin - This plugin adds a native input field below the webview and is always
visible even when displaying the keyboard.
</description>
<keywords></keywords>
<js-module src="www/NativeInput.js" name="NativeInput">
<clobbers target="cordova.plugins.NativeInput" />
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="NativeInput">
<param name="ios-package" value="AGNativeInput"/>
</feature>
</config-file>
<header-file src="src/ios/AGNativeInput.h" />
<source-file src="src/ios/AGNativeInput.m" />
<header-file src="src/ios/AGInputView.h" />
<source-file src="src/ios/AGInputView.m" />
<resource-file src="src/ios/AGInputView.xib" />
</platform>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="NativeInput" >
<param name="android-package" value="com.appgyver.plugins.nativeinput.NativeInput"/>
</feature>
</config-file>
<source-file src="src/android/NativeInput.java" target-dir="src/com/appgyver/plugins/nativeinput/" />
<source-file src="src/android/CustomEditText.java" target-dir="src/com/appgyver/plugins/nativeinput/" />
<source-file src="src/android/CustomEditTextAdapter.java" target-dir="src/com/appgyver/plugins/nativeinput/" />
</platform>
</plugin>