| 15747 |
anikendra |
1 |
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
2 |
|
|
|
3 |
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
|
|
|
4 |
id="com.ionic.keyboard"
|
|
|
5 |
version="1.0.4">
|
|
|
6 |
<name>Keyboard</name>
|
|
|
7 |
<description>Ionic Keyboard Plugin</description>
|
|
|
8 |
<license>Apache 2.0</license>
|
|
|
9 |
<keywords>Ionic,keyboard</keywords>
|
|
|
10 |
<repo>https://github.com/driftyco/ionic-plugins-keyboard.git</repo>
|
|
|
11 |
<issue>https://github.com/driftyco/ionic-plugins-keyboard/issues</issue>
|
|
|
12 |
|
|
|
13 |
<js-module src="www/keyboard.js" name="keyboard">
|
|
|
14 |
<clobbers target="cordova.plugins.Keyboard" />
|
|
|
15 |
</js-module>
|
|
|
16 |
|
|
|
17 |
<!-- android -->
|
|
|
18 |
<platform name="android">
|
|
|
19 |
|
|
|
20 |
<config-file target="res/xml/config.xml" parent="/*">
|
|
|
21 |
<feature name="Keyboard">
|
|
|
22 |
<param name="android-package" value="com.ionic.keyboard.IonicKeyboard" />
|
|
|
23 |
<param name="onload" value="true" />
|
|
|
24 |
</feature>
|
|
|
25 |
</config-file>
|
|
|
26 |
|
|
|
27 |
<source-file src="src/android/IonicKeyboard.java" target-dir="src/com/ionic/keyboard" />
|
|
|
28 |
</platform>
|
|
|
29 |
|
|
|
30 |
<!-- ios -->
|
|
|
31 |
<platform name="ios">
|
|
|
32 |
<config-file target="config.xml" parent="/*">
|
|
|
33 |
<feature name="Keyboard">
|
|
|
34 |
<param name="ios-package" value="IonicKeyboard" onload="true" />
|
|
|
35 |
</feature>
|
|
|
36 |
</config-file>
|
|
|
37 |
|
|
|
38 |
<header-file src="src/ios/IonicKeyboard.h" />
|
|
|
39 |
<source-file src="src/ios/IonicKeyboard.m" />
|
|
|
40 |
<header-file src="src/ios/UIWebViewExtension.h" />
|
|
|
41 |
<source-file src="src/ios/UIWebViewExtension.m" />
|
|
|
42 |
</platform>
|
|
|
43 |
|
|
|
44 |
<!-- blackberry10 -->
|
|
|
45 |
<platform name="blackberry10">
|
|
|
46 |
<source-file src="src/blackberry10/index.js" target-dir='Keyboard' />
|
|
|
47 |
<lib-file src="src/blackberry10/native/device/libKeyboard.so" arch="device"/>
|
|
|
48 |
<lib-file src="src/blackberry10/native/simulator/libKeyboard.so" arch="simulator"/>
|
|
|
49 |
<config-file target="www/config.xml" parent="/widget">
|
|
|
50 |
<feature name="Keyboard" value="com.ionic.keyboard"/>
|
|
|
51 |
|
|
|
52 |
</config-file>
|
|
|
53 |
</platform>
|
|
|
54 |
|
|
|
55 |
</plugin>
|