-
Notifications
You must be signed in to change notification settings - Fork 3
/
plugin.xml
38 lines (37 loc) · 1.76 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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova-plugin-cboard-speech-tts" version="0.0.1">
<name>cboard-speech-tts</name>
<description>Cordova TTS plugin used by the Cboard mobile app</description>
<license>GPL-3.0-only</license>
<keywords>cordova,cboard,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>
<js-module src="www/SpeechSynthesisEngine.js" name="SpeechSynthesisEngine">
<clobbers target="SpeechSynthesisEngine"/>
</js-module>
<js-module src="www/SpeechSynthesisEngineList.js" name="SpeechSynthesisEngineList">
<clobbers target="SpeechSynthesisEngineList"/>
</js-module>
</platform>
</plugin>