| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /framework7/cordova/plugins/cordova-plugin-keyboard/ |
Upload File : |
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova-plugin-keyboard" version="1.2.0">
<name>Keyboard</name>
<description>Cordova Keyboard Plugin</description>
<license>Apache 2.0</license>
<keywords>cordova,keyboard</keywords>
<engines>
<engine name="cordova" version=">=3.2.0" />
</engines>
<js-module src="www/keyboard.js" name="keyboard">
<clobbers target="window.Keyboard" />
</js-module>
<!-- ios -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="Keyboard">
<param name="ios-package" value="CDVKeyboard" onload="true" />
</feature>
</config-file>
<header-file src="src/ios/CDVKeyboard.h" />
<source-file src="src/ios/CDVKeyboard.m" />
</platform>
<!-- android -->
<platform name="android">
<config-file target="config.xml" parent="/*">
<feature name="Keyboard">
<param name="android-package" value="org.apache.cordova.labs.keyboard.Keyboard" onload="true" />
</feature>
</config-file>
<source-file src="src/android/Keyboard.java" target-dir="src/org/apache/cordova/labs/keyboard" />
</platform>
</plugin>