Browse Source

AndroidManifest.xml: specify an android:service for the espeak service.

This is to try and address the "java.lang.SecurityException: Not allowed to
bind to service Intent" error when using the spiel screen reader.
master
Reece H. Dunn 12 years ago
parent
commit
433a0a0455
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      android/AndroidManifest.xml

+ 2
- 1
android/AndroidManifest.xml View File

@@ -18,7 +18,8 @@
<service
android:name=".TtsService"
android:label="@string/app_name"
android:exported="false" >
android:exported="false"
android:process=":texttospeech" >
<intent-filter>
<action android:name="android.intent.action.TTS_SERVICE" />


Loading…
Cancel
Save