blob: 46e0ad100c5a96df32ee5d76653bd766afc5e14f [file] [log] [blame]
Charles Chenf85aa5a2009-06-10 10:39:55 -07001<?xml version="1.0" encoding="utf-8"?>
2<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3 package="android.tts">
Mike Cleronee9b30d2009-09-29 13:01:09 -07004 <application android:label="TTS Service"
5 android:icon="@drawable/ic_launcher_text_to_speech">
Charles Chenf85aa5a2009-06-10 10:39:55 -07006 <service android:enabled="true"
7 android:name=".TtsService"
8 android:label="TTS Service">
9 <intent-filter>
Charles Chen52ae0652009-07-06 16:10:32 -070010 <action android:name="android.intent.action.START_TTS_SERVICE"/>
Charles Chenf85aa5a2009-06-10 10:39:55 -070011 <category android:name="android.intent.category.TTS"/>
12 </intent-filter>
13 </service>
14 </application>
15 <uses-permission android:name="android.permission.INTERNET"/>
Jean-Michel Trivif07d8242009-06-30 09:36:08 -070016 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
Charles Chenf85aa5a2009-06-10 10:39:55 -070017</manifest>