2009-06-10 10:39:55 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="android.tts">
|
2009-09-29 13:01:09 -07:00
|
|
|
<application android:label="TTS Service"
|
|
|
|
android:icon="@drawable/ic_launcher_text_to_speech">
|
2009-06-10 10:39:55 -07:00
|
|
|
<service android:enabled="true"
|
|
|
|
android:name=".TtsService"
|
|
|
|
android:label="TTS Service">
|
|
|
|
<intent-filter>
|
2009-07-06 16:10:32 -07:00
|
|
|
<action android:name="android.intent.action.START_TTS_SERVICE"/>
|
2009-06-10 10:39:55 -07:00
|
|
|
<category android:name="android.intent.category.TTS"/>
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
|
|
|
</application>
|
|
|
|
<uses-permission android:name="android.permission.INTERNET"/>
|
2009-06-30 09:36:08 -07:00
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
2009-06-10 10:39:55 -07:00
|
|
|
</manifest>
|