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

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