1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.reecedunn.espeak"
- android:versionCode="19"
- android:versionName="1.48.11" >
- <uses-feature
- android:name="android.hardware.touchscreen"
- android:required="false" />
- <application
- android:icon="@drawable/icon"
- android:theme="@style/AppTheme"
- android:label="@string/app_name" >
- <service
- android:name=".TtsService"
- android:label="@string/app_name" >
- <intent-filter>
- <action android:name="android.intent.action.TTS_SERVICE" />
- <category android:name="android.intent.category.DEFAULT" />
- </intent-filter>
- <meta-data
- android:name="android.speech.tts"
- android:resource="@xml/tts_engine" />
- </service>
- <activity
- android:name=".DownloadVoiceData"
- android:theme="@android:style/Theme.Dialog" >
- <intent-filter>
- <action android:name="android.speech.tts.engine.INSTALL_TTS_DATA" />
- <category android:name="android.intent.category.DEFAULT" />
- </intent-filter>
- </activity>
- <activity
- android:name=".CheckVoiceData"
- android:theme="@android:style/Theme.Translucent.NoTitleBar" >
- <intent-filter>
- <action android:name="android.speech.tts.engine.CHECK_TTS_DATA" />
- <category android:name="android.intent.category.DEFAULT" />
- </intent-filter>
- </activity>
- <activity
- android:name=".GetSampleText"
- android:theme="@android:style/Theme.Translucent.NoTitleBar" >
- <intent-filter>
- <action android:name="android.speech.tts.engine.GET_SAMPLE_TEXT" />
- <category android:name="android.intent.category.DEFAULT" />
- </intent-filter>
- </activity>
- <activity
- android:name=".TtsSettingsActivity"
- android:label="@string/tts_settings_label" >
- <intent-filter>
- <action android:name="android.speech.tts.engine.CONFIGURE_ENGINE" />
- <category android:name="android.intent.category.DEFAULT" />
- </intent-filter>
- </activity>
- <activity
- android:name=".eSpeakActivity"
- android:label="@string/app_name" >
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- </application>
- </manifest>
|