Browse Source

Android: increase target sdk to 31

master
Alexander Epaneshnikov 2 years ago
parent
commit
1133b29bca
No account linked to committer's email address
1 changed files with 12 additions and 6 deletions
  1. 12
    6
      android/AndroidManifest.xml

+ 12
- 6
android/AndroidManifest.xml View File

<service <service
android:name=".TtsService" android:name=".TtsService"
android:label="@string/app_name" android:label="@string/app_name"
android:directBootAware="true">
android:directBootAware="true"
android:exported="true">
<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:theme="@android:style/Theme.Dialog"
android:exported="true">
<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:theme="@android:style/Theme.Translucent.NoTitleBar"
android:exported="true">
<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:theme="@android:style/Theme.Translucent.NoTitleBar"
android:exported="true">
<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:label="@string/tts_settings_label"
android:exported="true">
<intent-filter> <intent-filter>
<action android:name="android.speech.tts.engine.CONFIGURE_ENGINE" /> <action android:name="android.speech.tts.engine.CONFIGURE_ENGINE" />


</activity> </activity>
<activity <activity
android:name=".eSpeakActivity" android:name=".eSpeakActivity"
android:label="@string/app_name" >
android:label="@string/app_name"
android:exported="true">
<intent-filter> <intent-filter>
<action android:name="android.intent.action.MAIN" /> <action android:name="android.intent.action.MAIN" />



Loading…
Cancel
Save