We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 339dd88 commit 6fc067dCopy full SHA for 6fc067d
src/CommunityToolkit.Maui.Core/Essentials/SpeechToText/OfflineSpeechToTextImplementation.android.cs
@@ -98,7 +98,7 @@ async Task InternalStartListening(SpeechToTextOptions options, CancellationToken
98
}
99
else if (OperatingSystem.IsAndroidVersionAtLeast(33))
100
{
101
- await TryDownloadOfflineRecognizer33Async(recognizerIntent);
+ TryDownloadOfflineRecognizer33(recognizerIntent);
102
103
104
@@ -107,7 +107,7 @@ async Task InternalStartListening(SpeechToTextOptions options, CancellationToken
107
108
109
[SupportedOSPlatform("Android33.0")]
110
- void TryDownloadOfflineRecognizer33Async(Intent recognizerIntent)
+ void TryDownloadOfflineRecognizer33(Intent recognizerIntent)
111
112
speechRecognizer?.TriggerModelDownload(recognizerIntent);
113
0 commit comments