forked from EddyVerbruggen/cordova-plugin-taptic-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
39 lines (28 loc) · 1.09 KB
/
plugin.xml
File metadata and controls
39 lines (28 loc) · 1.09 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
33
34
35
36
37
38
39
<?xml version='1.0' encoding='UTF-8'?>
<plugin
id="cordova-plugin-taptic-engine"
version="2.1.0"
xmlns="http://apache.org/cordova/ns/plugins/1.0">
<name>Taptic Engine</name>
<author>Eddy Verbruggen - @EddyVerbruggen</author>
<description>Use Apple's Taptic Engine to vibrate your iPhone 6s (or up) in a variety of ways.</description>
<keywords>Taptic Engine, Haptic, Haptic Feedback, Taptic, Taptic Feedback, Vibrate, Vibration</keywords>
<license>MIT</license>
<engines>
<engine name="cordova" version=">=3.5.0"/>
</engines>
<js-module name="TapticEngine" src="www/TapticEngine.js">
<clobbers target="TapticEngine"/>
</js-module>
<platform name="ios">
<config-file parent="/*" target="config.xml">
<feature name="TapticEngine">
<param name="ios-package" value="TapticEngine"/>
</feature>
</config-file>
<header-file src="src/ios/TapticEngine.h"/>
<source-file src="src/ios/TapticEngine.m"/>
<!-- required only for the unofficial API -->
<framework src="AudioToolbox.framework" weak="true" />
</platform>
</plugin>