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