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 <uses-sdk android:minSdkVersion="2" /> 18 <uses-permission android:name="android.permission.DELETE_PACKAGES" /> 19 <application android:label="@string/app_name"> 20 21 <activity android:name=".DownloadVoiceData" android:label="@string/app_name" 22 android:theme="@android:style/Theme.Translucent.NoTitleBar"> 23 <intent-filter> 24 <action android:name="android.speech.tts.engine.INSTALL_TTS_DATA" /> 25 <category android:name="android.intent.category.DEFAULT" /> 26 </intent-filter> 27 </activity> 28 29 <receiver android:name=".VoiceDataInstallerReceiver"> 30 <intent-filter> 31 <action android:name="android.intent.action.PACKAGE_ADDED" /> 32 <data android:scheme="package" /> 33 </intent-filter> 34 </receiver> 35 36 <receiver android:name=".LangPackUninstaller"> 37 <intent-filter> 38 <action android:name="android.speech.tts.engine.TTS_DATA_INSTALLED" /> 39 </intent-filter> 40 </receiver> 41 42 <activity android:name=".CheckVoiceData" android:label="@string/app_name" 43 android:theme="@android:style/Theme.Translucent.NoTitleBar"> 44 <intent-filter> 45 <action android:name="android.speech.tts.engine.CHECK_TTS_DATA" /> 46 <category android:name="android.intent.category.DEFAULT" /> 47 </intent-filter> 48 </activity> 49 50 <activity android:name=".GetSampleText" android:label="@string/app_name" 51 android:theme="@android:style/Theme.Translucent.NoTitleBar"> 52 <intent-filter> 53 <action android:name="android.speech.tts.engine.GET_SAMPLE_TEXT" /> 54 <category android:name="android.intent.category.DEFAULT" /> 55 </intent-filter> 56 </activity> 57 58 <activity android:name=".EngineSettings" android:label="@string/app_name"> 59 <intent-filter> 60 <action android:name="android.speech.tts.engine.CONFIGURE_ENGINE" /> 61 <category android:name="android.intent.category.DEFAULT" /> 62 </intent-filter> 63 </activity> 64 65 <activity android:enabled="true" android:name=".Pico" 66 android:hasCode="false" android:label="@string/app_name" 67 android:theme="@android:style/Theme.Translucent.NoTitleBar"> 68 <intent-filter> 69 <action android:name="android.intent.action.START_TTS_ENGINE" /> 70 <category android:name="android.intent.category.tts_engine.PICO" /> 71 <category android:name="android.intent.category.tts_lang.eng" /> 72 <category android:name="android.intent.category.tts_lang.eng.USA" /> 73 <category android:name="android.intent.category.tts_lang.eng.GBR" /> 74 <category android:name="android.intent.category.tts_lang.fra" /> 75 <category android:name="android.intent.category.tts_lang.deu" /> 76 <category android:name="android.intent.category.tts_lang.ita" /> 77 <category android:name="android.intent.category.tts_lang.spa" /> 78 </intent-filter> 79 </activity> 80 81 <provider android:name=".providers.SettingsProvider" 82 android:authorities="com.svox.pico.providers.SettingsProvider" /> 83 </application> 84</manifest> 85