Skip to content

Commit

Permalink
fix: android 13 speech recognition bug
Browse files Browse the repository at this point in the history
  • Loading branch information
math3ussdl committed May 9, 2023
1 parent 878eb2c commit 26b08b6
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion Platforms/Android/SpeechIntent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ public static Intent CreateSpeechIntent(CultureInfo culture)
intent.PutExtra(RecognizerIntent.ExtraLanguage, javaLocale);
intent.PutExtra(RecognizerIntent.ExtraLanguageModel, RecognizerIntent.LanguageModelFreeForm);
intent.PutExtra(RecognizerIntent.ExtraCallingPackage, Android.App.Application.Context.PackageName);
intent.PutExtra(RecognizerIntent.ExtraSpeechInputCompleteSilenceLengthMillis, 8000);
intent.PutExtra(RecognizerIntent.ExtraPartialResults, true);

return intent;
Expand Down

0 comments on commit 26b08b6

Please sign in to comment.