Jean-Michel Trivi f07d824ba4 In TTS synthesis to file, remove hard coded values for the writing of the WAV header.
Corrected TTS Service manifest to allow writing to external storage.
Corrected memory management when the end of synthesis is signaled.
2009-06-30 09:50:12 -07:00

17 lines
713 B
XML
Executable File

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="android.tts">
<application android:label="TTS Service">
<service android:enabled="true"
android:name=".TtsService"
android:label="TTS Service">
<intent-filter>
<action android:name="android.intent.action.USE_TTS"/>
<category android:name="android.intent.category.TTS"/>
</intent-filter>
</service>
</application>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
</manifest>