blob: cf1c1628951d3e1bcc17a83c5cfe4dfa88878bed [file] [log] [blame]
Narayan Kamathc60aad22011-12-06 16:40:03 +00001<?xml version="1.0" encoding="utf-8"?>
2<!--
3Copyright (C) 2011 The Android Open Source Project
4
5Licensed under the Apache License, Version 2.0 (the "License");
6you may not use this file except in compliance with the License.
7You may obtain a copy of the License at
8
9http://www.apache.org/licenses/LICENSE-2.0
10
11Unless required by applicable law or agreed to in writing, software
12distributed under the License is distributed on an "AS IS" BASIS,
13WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14See the License for the specific language governing permissions and
15limitations under the License.
16-->
17
Ashwini Orugantie178c242020-03-18 15:46:39 -070018<manifest xmlns:android="http://schemas.android.com/apk/res/android"
19 package="com.android.speech.tts">
Narayan Kamathc60aad22011-12-06 16:40:03 +000020 <application>
Ashwini Orugantie178c242020-03-18 15:46:39 -070021 <uses-library android:name="android.test.runner"/>
Narayan Kamathc60aad22011-12-06 16:40:03 +000022
23
24 <service android:name=".MockableTextToSpeechService"
Ashwini Orugantie178c242020-03-18 15:46:39 -070025 android:label="Mockable Text-to-speech Service"
26 android:exported="true">
Narayan Kamathc60aad22011-12-06 16:40:03 +000027 <intent-filter>
Ashwini Orugantie178c242020-03-18 15:46:39 -070028 <action android:name="android.intent.action.TTS_SERVICE"/>
29 <category android:name="android.intent.category.DEFAULT"/>
Narayan Kamathc60aad22011-12-06 16:40:03 +000030 </intent-filter>
31 </service>
32
33 <activity android:name=".MockableCheckVoiceData"
Ashwini Orugantie178c242020-03-18 15:46:39 -070034 android:theme="@android:style/Theme.NoDisplay"
35 android:exported="true">
Narayan Kamathc60aad22011-12-06 16:40:03 +000036 <intent-filter>
Ashwini Orugantie178c242020-03-18 15:46:39 -070037 <action android:name="android.speech.tts.engine.CHECK_TTS_DATA"/>
38 <category android:name="android.intent.category.DEFAULT"/>
Narayan Kamathc60aad22011-12-06 16:40:03 +000039 </intent-filter>
40 </activity>
41 </application>
42
43 <instrumentation android:name="android.test.InstrumentationTestRunner"
Ashwini Orugantie178c242020-03-18 15:46:39 -070044 android:targetPackage="com.android.speech.tts"
45 android:label="Tests for android.speech.tts"/>
Narayan Kamathc60aad22011-12-06 16:40:03 +000046</manifest>