forked from pschellenbach/cordova.externalkeyboard
-
Notifications
You must be signed in to change notification settings - Fork 2
/
plugin.xml
30 lines (25 loc) · 1.1 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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
id="cordova-external-keyboard"
version="1.0.0">
<name>External Keyboard</name>
<description>External Keyboard Plugin</description>
<license>Apache 2.0</license>
<keywords>bluetooth,hardware,keyboard</keywords>
<repo>https://github.com/SimpleJoySolutions/cordova.externalkeyboard.git</repo>
<issue>https://github.com/SimpleJoySolutions/cordova.externalkeyboard/issues</issue>
<js-module src="www/keyboard.js" name="keyboard">
<clobbers target="cordova.plugins.ExternalKeyboard" />
</js-module>
<!-- ios -->
<platform name="ios">
<hook type="after_plugin_install" src="scripts/iosAfterInstall.js" />
<config-file target="config.xml" parent="/*">
<feature name="ExternalKeyboard">
<param name="ios-package" value="ExternalKeyboard" onload="true" />
</feature>
</config-file>
<header-file src="src/ios/ExternalKeyboard.h" />
<source-file src="src/ios/ExternalKeyboard.m" />
</platform>
</plugin>