-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
15 lines (15 loc) · 786 Bytes
/
plugin.xml
File metadata and controls
15 lines (15 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version='1.0' encoding='utf-8'?>
<plugin id="cordova.android.tts.plugin" version="0.1" xmlns="http://apache.org/cordova/ns/plugins/1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<name>androidTTS</name>
<js-module name="androidTTS" src="www/androidTTS.js">
<clobbers target="cordova.plugins.androidTTS" />
</js-module>
<platform name="android"><config-file parent="/*" target="res/xml/config.xml">
<feature name="androidTTS">
<param name="android-package" value="cordova.android.tts.plugin.androidTTS" />
</feature>
</config-file>
<config-file parent="/*" target="AndroidManifest.xml"></config-file>
<source-file src="src/android/androidTTS.java" target-dir="src/cordova/android/tts/plugin/androidTTS" />
</platform>
</plugin>