AndroidManifest.xml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.reecedunn.espeak"
  4. android:versionCode="19"
  5. android:versionName="1.48.11" >
  6. <uses-feature
  7. android:name="android.hardware.touchscreen"
  8. android:required="false" />
  9. <application
  10. android:icon="@drawable/icon"
  11. android:theme="@style/AppTheme"
  12. android:label="@string/app_name" >
  13. <service
  14. android:name=".TtsService"
  15. android:label="@string/app_name" >
  16. <intent-filter>
  17. <action android:name="android.intent.action.TTS_SERVICE" />
  18. <category android:name="android.intent.category.DEFAULT" />
  19. </intent-filter>
  20. <meta-data
  21. android:name="android.speech.tts"
  22. android:resource="@xml/tts_engine" />
  23. </service>
  24. <activity
  25. android:name=".DownloadVoiceData"
  26. android:theme="@android:style/Theme.Dialog" >
  27. <intent-filter>
  28. <action android:name="android.speech.tts.engine.INSTALL_TTS_DATA" />
  29. <category android:name="android.intent.category.DEFAULT" />
  30. </intent-filter>
  31. </activity>
  32. <activity
  33. android:name=".CheckVoiceData"
  34. android:theme="@android:style/Theme.Translucent.NoTitleBar" >
  35. <intent-filter>
  36. <action android:name="android.speech.tts.engine.CHECK_TTS_DATA" />
  37. <category android:name="android.intent.category.DEFAULT" />
  38. </intent-filter>
  39. </activity>
  40. <activity
  41. android:name=".GetSampleText"
  42. android:theme="@android:style/Theme.Translucent.NoTitleBar" >
  43. <intent-filter>
  44. <action android:name="android.speech.tts.engine.GET_SAMPLE_TEXT" />
  45. <category android:name="android.intent.category.DEFAULT" />
  46. </intent-filter>
  47. </activity>
  48. <activity
  49. android:name=".TtsSettingsActivity"
  50. android:label="@string/tts_settings_label" >
  51. <intent-filter>
  52. <action android:name="android.speech.tts.engine.CONFIGURE_ENGINE" />
  53. <category android:name="android.intent.category.DEFAULT" />
  54. </intent-filter>
  55. </activity>
  56. <activity
  57. android:name=".eSpeakActivity"
  58. android:label="@string/app_name" >
  59. <intent-filter>
  60. <action android:name="android.intent.action.MAIN" />
  61. <category android:name="android.intent.category.LAUNCHER" />
  62. </intent-filter>
  63. </activity>
  64. </application>
  65. </manifest>