summaryrefslogtreecommitdiffstats
path: root/packages/TtsService/AndroidManifest.xml
blob: 46e0ad100c5a96df32ee5d76653bd766afc5e14f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?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"
        android:icon="@drawable/ic_launcher_text_to_speech">
        <service android:enabled="true"
                 android:name=".TtsService"
                 android:label="TTS Service">
            <intent-filter>
                <action android:name="android.intent.action.START_TTS_SERVICE"/>
                <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>