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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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="@mipmap/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. android:exported="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. android:exported="true">
  30. <intent-filter>
  31. <action android:name="android.speech.tts.engine.INSTALL_TTS_DATA" />
  32. <category android:name="android.intent.category.DEFAULT" />
  33. </intent-filter>
  34. </activity>
  35. <activity
  36. android:name=".CheckVoiceData"
  37. android:theme="@android:style/Theme.Translucent.NoTitleBar"
  38. android:exported="true">
  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
  45. android:name=".GetSampleText"
  46. android:theme="@android:style/Theme.Translucent.NoTitleBar"
  47. android:exported="true">
  48. <intent-filter>
  49. <action android:name="android.speech.tts.engine.GET_SAMPLE_TEXT" />
  50. <category android:name="android.intent.category.DEFAULT" />
  51. </intent-filter>
  52. </activity>
  53. <activity
  54. android:name=".TtsSettingsActivity"
  55. android:label="@string/tts_settings_label"
  56. android:exported="true">
  57. <intent-filter>
  58. <action android:name="android.speech.tts.engine.CONFIGURE_ENGINE" />
  59. <category android:name="android.intent.category.DEFAULT" />
  60. </intent-filter>
  61. </activity>
  62. <activity
  63. android:name=".eSpeakActivity"
  64. android:label="@string/app_name"
  65. android:exported="true">
  66. <intent-filter>
  67. <action android:name="android.intent.action.MAIN" />
  68. <category android:name="android.intent.category.LAUNCHER" />
  69. </intent-filter>
  70. </activity>
  71. </application>
  72. </manifest>