1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- android:versionCode="22"
- android:versionName="1.52.0" >
-
- <uses-feature
- android:name="android.hardware.touchscreen"
- android:required="false" />
-
- <application
- android:name="com.reecedunn.espeak.EspeakApp"
- android:icon="@mipmap/icon"
- android:theme="@style/AppTheme"
- android:label="@string/app_name" >
- <service
- android:name=".TtsService"
- android:label="@string/app_name"
- android:directBootAware="true"
- android:exported="true">
- <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"
- android:exported="true">
- <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"
- android:exported="true">
- <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"
- android:exported="true">
- <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"
- android:exported="true">
- <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"
- android:exported="true">
- <intent-filter>
- <action android:name="android.intent.action.MAIN" />
-
- <category android:name="android.intent.category.LAUNCHER" />
- </intent-filter>
- </activity>
- </application>
-
- </manifest>
|