eSpeak NG is an open source speech synthesizer that supports more than hundred languages and accents.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AndroidManifest.xml 2.7KB

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