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.8KB

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