mirror of
https://github.com/wahyd4/Libr-mobile.git
synced 2026-08-10 05:18:08 +10:00
47 lines
1.4 KiB
XML
47 lines
1.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
|
|
id="com.ionic.keyboard"
|
|
version="0.0.1">
|
|
<name>Keyboard</name>
|
|
<description>Ionic Keyboard Plugin</description>
|
|
<license>Apache 2.0</license>
|
|
<keywords>Ionic,keyboard</keywords>
|
|
|
|
<engines>
|
|
<engine name="cordova" version=">=3.2.0" />
|
|
</engines>
|
|
|
|
<js-module src="www/keyboard.js" name="keyboard">
|
|
<clobbers target="cordova.plugins.Keyboard" />
|
|
</js-module>
|
|
|
|
<!-- android -->
|
|
<platform name="android">
|
|
|
|
<config-file target="res/xml/config.xml" parent="/*">
|
|
<feature name="Keyboard">
|
|
<param name="android-package" value="com.ionic.keyboard.IonicKeyboard" />
|
|
<param name="onload" value="true" />
|
|
</feature>
|
|
</config-file>
|
|
|
|
<source-file src="src/android/IonicKeyboard.java" target-dir="src/com/ionic/keyboard" />
|
|
</platform>
|
|
|
|
<!-- ios -->
|
|
<platform name="ios">
|
|
<config-file target="config.xml" parent="/*">
|
|
<feature name="Keyboard">
|
|
<param name="ios-package" value="IonicKeyboard" onload="true" />
|
|
</feature>
|
|
</config-file>
|
|
|
|
<header-file src="src/ios/IonicKeyboard.h" />
|
|
<source-file src="src/ios/IonicKeyboard.m" />
|
|
<header-file src="src/ios/UIWebViewAccessoryHiding.h" />
|
|
<source-file src="src/ios/UIWebViewAccessoryHiding.m" />
|
|
</platform>
|
|
|
|
</plugin>
|