1<?xml version="1.0" encoding="utf-8"?>
2
3<manifest xmlns:android="http://schemas.android.com/apk/res/android"
4          package="com.android.cts.tts.helper">
5<application
6  android:label="TTS CTS Test Helper App">
7  <service
8    android:name=".TTSHelperService"
9    android:exported="true">
10    <intent-filter android:priority="100">
11      <action android:name="android.intent.action.TTS_SERVICE" />
12      <category android:name="android.intent.category.DEFAULT" />
13    </intent-filter>
14  </service>
15  <activity
16        android:name="CheckVoiceData"
17        android:directBootAware="true"
18        android:exported="true"
19        android:theme="@android:style/Theme.NoDisplay">
20      <intent-filter>
21        <action android:name="android.speech.tts.engine.CHECK_TTS_DATA"/>
22        <category android:name="android.intent.category.DEFAULT"/>
23      </intent-filter>
24    </activity>
25    <activity
26        android:name="GetSampleText"
27        android:directBootAware="true"
28        android:exported="true"
29        android:theme="@android:style/Theme.NoDisplay">
30      <intent-filter>
31        <action android:name="android.speech.tts.engine.GET_SAMPLE_TEXT"/>
32        <category android:name="android.intent.category.DEFAULT"/>
33      </intent-filter>
34    </activity>
35</application>
36</manifest>
37