1<?xml version="1.0" encoding="utf-8"?>
2    <!--
3        ** ** Copyright 2009, The Android Open Source Project ** ** Licensed
4        under the Apache License, Version 2.0 (the "License"); ** you may not
5        use this file except in compliance with the License. ** You may obtain
6        a copy of the License at ** **
7        http://www.apache.org/licenses/LICENSE-2.0 ** ** Unless required by
8        applicable law or agreed to in writing, software ** distributed under
9        the License is distributed on an "AS IS" BASIS, ** WITHOUT WARRANTIES
10        OR CONDITIONS OF ANY KIND, either express or implied. ** See the
11        License for the specific language governing permissions and **
12        limitations under the License. */
13    -->
14
15<manifest xmlns:android="http://schemas.android.com/apk/res/android"
16    package="com.svox.pico" android:versionCode="1" android:versionName="1.0">
17
18    <uses-permission android:name="android.permission.DELETE_PACKAGES" />
19    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
20    <application android:label="@string/app_name">
21
22        <service android:name=".PicoService"
23                  android:label="@string/app_name">
24            <intent-filter>
25                <action android:name="android.intent.action.TTS_SERVICE" />
26                <category android:name="android.intent.category.DEFAULT" />
27            </intent-filter>
28            <meta-data android:name="android.speech.tts" android:resource="@xml/tts_engine" />
29        </service>
30
31        <activity android:name=".DownloadVoiceData" android:label="@string/app_name"
32            android:theme="@android:style/Theme.Translucent.NoTitleBar">
33            <intent-filter>
34                <action android:name="android.speech.tts.engine.INSTALL_TTS_DATA" />
35                <category android:name="android.intent.category.DEFAULT" />
36            </intent-filter>
37        </activity>
38
39        <receiver android:name=".VoiceDataInstallerReceiver">
40            <intent-filter>
41                <action android:name="android.intent.action.PACKAGE_ADDED" />
42                <data android:scheme="package" />
43            </intent-filter>
44        </receiver>
45
46        <receiver android:name=".LangPackUninstaller">
47            <intent-filter>
48                <action android:name="android.speech.tts.engine.TTS_DATA_INSTALLED" />
49            </intent-filter>
50        </receiver>
51
52        <activity android:name=".CheckVoiceData" android:label="@string/app_name"
53            android:theme="@android:style/Theme.Translucent.NoTitleBar">
54            <intent-filter>
55                <action android:name="android.speech.tts.engine.CHECK_TTS_DATA" />
56                <category android:name="android.intent.category.DEFAULT" />
57            </intent-filter>
58        </activity>
59
60        <activity android:name=".GetSampleText" android:label="@string/app_name"
61            android:theme="@android:style/Theme.Translucent.NoTitleBar">
62            <intent-filter>
63                <action android:name="android.speech.tts.engine.GET_SAMPLE_TEXT" />
64                <category android:name="android.intent.category.DEFAULT" />
65            </intent-filter>
66        </activity>
67
68        <activity android:name=".EngineSettings" android:label="@string/app_name">
69            <intent-filter>
70                <action android:name="android.speech.tts.engine.CONFIGURE_ENGINE" />
71                <category android:name="android.intent.category.DEFAULT" />
72            </intent-filter>
73        </activity>
74
75        <activity android:enabled="true" android:name=".Pico"
76            android:hasCode="false" android:label="@string/app_name"
77            android:theme="@android:style/Theme.Translucent.NoTitleBar">
78            <intent-filter>
79                <action android:name="android.intent.action.START_TTS_ENGINE" />
80                <category android:name="android.intent.category.tts_engine.PICO" />
81                <category android:name="android.intent.category.tts_lang.eng" />
82                <category android:name="android.intent.category.tts_lang.eng.USA" />
83                <category android:name="android.intent.category.tts_lang.eng.GBR" />
84                <category android:name="android.intent.category.tts_lang.fra" />
85                <category android:name="android.intent.category.tts_lang.deu" />
86                <category android:name="android.intent.category.tts_lang.ita" />
87                <category android:name="android.intent.category.tts_lang.spa" />
88            </intent-filter>
89        </activity>
90
91        <provider android:name=".providers.SettingsProvider"
92            android:authorities="com.svox.pico.providers.SettingsProvider"  />
93    </application>
94</manifest>
95