-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathplugin.xml
More file actions
32 lines (25 loc) · 1.02 KB
/
plugin.xml
File metadata and controls
32 lines (25 loc) · 1.02 KB
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
31
32
<?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="com.techblue.cordova.plugin.keyboard_notification"
version="0.0.1">
<name>Keyboard Notification</name>
<description>Notify when keybord will show/hide</description>
<author>Neeraj Sharma, Technology Blueprint</author>
<license>MIT</license>
<engines>
<engine name="cordova" version=">=2.9.0" />
</engines>
<js-module src="www/keyboard_notification.js" name="KeyboardNotification">
<clobbers target="KeyboardNotify"/>
</js-module>
<platform name="ios">
<config-file target="config.xml" parent="/*">
<feature name="KeyboardNotification">
<param name="ios-package" value="KeyboardNotification"/>
</feature>
</config-file>
<header-file src="src/ios/KeyboardNotification.h" />
<source-file src="src/ios/KeyboardNotification.m" />
</platform>
</plugin>