forked from steevelefort/cordova3-ios-tts-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.xml
More file actions
32 lines (29 loc) · 1.13 KB
/
plugin.xml
File metadata and controls
32 lines (29 loc) · 1.13 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"
id="nz.co.beweb.ttsplugin"
version="0.3.0">
<name>TtsPlugin</name>
<description>Text to speech plugin</description>
<license>Apache 2.0</license>
<keywords>cordova,tts,text,speech</keywords>
<repo>https://github.com/cavej03/cordova3-ios-tts-plugin.git</repo>
<issue>https://github.com/cavej03/cordova3-ios-tts-plugin</issue>
<engines>
<engine name="cordova" version=">=3.1.0" />
</engines>
<!-- ios -->
<platform name="ios">
<js-module src="www/TtsPlugin.js" name="TtsPlugin">
<clobbers target="ttsPlugin" />
</js-module>
<config-file target="config.xml" parent="/*">
<feature name="TtsPlugin">
<param name="ios-package" value="TtsPlugin" />
</feature>
</config-file>
<header-file src="src/ios/TtsPlugin.h" />
<source-file src="src/ios/TtsPlugin.m" />
<framework src="AVFoundation.framework" />
<framework src="Foundation.framework" />
</platform>
</plugin>