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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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.51-dev" >
  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>