Browse Source

Revert "Fix exported activities/services/providers warning in the manifest."

This reverts commit a79fe17681.

Conflicts:
	android/AndroidManifest.xml

This is the actual commit that causes the permission problems noted in
issue #31.
master
Reece H. Dunn 12 years ago
parent
commit
55cb127db0
1 changed files with 6 additions and 13 deletions
  1. 6
    13
      android/AndroidManifest.xml

+ 6
- 13
android/AndroidManifest.xml View File

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


<activity <activity
android:name=".DownloadVoiceData" android:name=".DownloadVoiceData"
android:theme="@android:style/Theme.Dialog"
android:exported="false" >
android:theme="@android:style/Theme.Dialog" >
<intent-filter> <intent-filter>
<action android:name="android.speech.tts.engine.INSTALL_TTS_DATA" /> <action android:name="android.speech.tts.engine.INSTALL_TTS_DATA" />


</activity> </activity>
<activity <activity
android:name=".CheckVoiceData" android:name=".CheckVoiceData"
android:theme="@android:style/Theme.Translucent.NoTitleBar"
android:exported="false" >
android:theme="@android:style/Theme.Translucent.NoTitleBar" >
<intent-filter> <intent-filter>
<action android:name="android.speech.tts.engine.CHECK_TTS_DATA" /> <action android:name="android.speech.tts.engine.CHECK_TTS_DATA" />


</activity> </activity>
<activity <activity
android:name=".GetSampleText" android:name=".GetSampleText"
android:theme="@android:style/Theme.Translucent.NoTitleBar"
android:exported="false" >
android:theme="@android:style/Theme.Translucent.NoTitleBar" >
<intent-filter> <intent-filter>
<action android:name="android.speech.tts.engine.GET_SAMPLE_TEXT" /> <action android:name="android.speech.tts.engine.GET_SAMPLE_TEXT" />


</activity> </activity>
<activity <activity
android:name=".TtsSettingsActivity" android:name=".TtsSettingsActivity"
android:label="@string/tts_settings_label"
android:exported="false" >
android:label="@string/tts_settings_label" >
<intent-filter> <intent-filter>
<action android:name="android.speech.tts.engine.CONFIGURE_ENGINE" /> <action android:name="android.speech.tts.engine.CONFIGURE_ENGINE" />


<activity <activity
android:name=".eSpeak" android:name=".eSpeak"
android:label="@string/app_name" android:label="@string/app_name"
android:theme="@android:style/Theme.Translucent.NoTitleBar"
android:exported="false" >
android:theme="@android:style/Theme.Translucent.NoTitleBar" >
<intent-filter> <intent-filter>
<action android:name="android.intent.action.START_TTS_ENGINE" /> <action android:name="android.intent.action.START_TTS_ENGINE" />




<provider <provider
android:name="com.reecedunn.espeak.providers.SettingsProvider" android:name="com.reecedunn.espeak.providers.SettingsProvider"
android:authorities="com.reecedunn.espeak.providers.SettingsProvider"
android:exported="false" />
android:authorities="com.reecedunn.espeak.providers.SettingsProvider" />
</application> </application>


</manifest> </manifest>

Loading…
Cancel
Save