/documentation/TextToSpeech_Plugin_Engine_Examples/PicoUnbundled/AndroidManifest.xml

http://eyes-free.googlecode.com/ · XML · 85 lines · 63 code · 10 blank · 12 comment · 0 complexity · b9d81a9f71b4b9b7a5e9fae253fb6cc6 MD5 · raw file

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