forked from kurtisf/cordova-plugin-restrict-keyboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
28 lines (20 loc) · 799 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0"
xmlns:android="http://schemas.android.com/apk/res/android"
id="cordova-plugin-restrict-keyboard-fork"
version="1.0">
<name>Restrict Keyboard</name>
<description>
This is a simple Cordova plugin that prevents custom keyboards from being used on iOS.
</description>
<license>MIT</license>
<!-- iOS Configuration -->
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="RestrictKeyboard">
<param name="ios-package" value="CDVRestrictKeyboard" />
</feature>
</config-file>
<source-file src="src/ios/CDVRestrictKeyboard.m" />
</platform>
</plugin>