forked from macdonst/SpeechSynthesisPlugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.xml
42 lines (33 loc) · 1.57 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
31
32
33
34
35
36
37
38
39
40
41
42
<?xml version="1.0" encoding="UTF-8"?>
<plugin xmlns="http://www.phonegap.com/ns/plugins/1.0"
id="org.apache.cordova.speech.speechsynthesis"
version="0.1.0">
<name>SpeechSynthesis</name>
<description>Cordova Speech Synthesis Plugin</description>
<license>MIT</license>
<keywords>cordova,speech,synthesis,tts</keywords>
<!-- android -->
<platform name="android">
<config-file target="res/xml/config.xml" parent="/*">
<feature name="SpeechSynthesis">
<param name="android-package" value="org.apache.cordova.speech.SpeechSynthesis"/>
</feature>
</config-file>
<source-file src="src/android/SpeechSynthesis.java" target-dir="src/org/apache/cordova/speech" />
<js-module src="www/SpeechSynthesis.js" name="SpeechSynthesis">
<clobbers target="window.speechSynthesis" />
</js-module>
<js-module src="www/SpeechSynthesisUtterance.js" name="SpeechSynthesisUtterance">
<clobbers target="SpeechSynthesisUtterance" />
</js-module>
<js-module src="www/SpeechSynthesisEvent.js" name="SpeechSynthesisEvent">
<clobbers target="SpeechSynthesisEvent" />
</js-module>
<js-module src="www/SpeechSynthesisVoice.js" name="SpeechSynthesisVoice">
<clobbers target="SpeechSynthesisVoice" />
</js-module>
<js-module src="www/SpeechSynthesisVoiceList.js" name="SpeechSynthesisVoiceList">
<clobbers target="SpeechSynthesisVoiceList" />
</js-module>
</platform>
</plugin>