diff --git a/ListenerGS/Info.plist b/ListenerGS/Info.plist index c252e06..d7d6676 100644 --- a/ListenerGS/Info.plist +++ b/ListenerGS/Info.plist @@ -19,7 +19,7 @@ CFBundleShortVersionString 1.0 CFBundleVersion - 434 + 445 LSApplicationCategoryType public.app-category.utilities LSRequiresIPhoneOS diff --git a/ListenerGS/SpeechForwarder.swift b/ListenerGS/SpeechForwarder.swift index 86bf0c2..5b504c4 100644 --- a/ListenerGS/SpeechForwarder.swift +++ b/ListenerGS/SpeechForwarder.swift @@ -283,11 +283,7 @@ class SpeechForwarder : ObservableObject { recognitionRequest = SFSpeechAudioBufferRecognitionRequest() guard let recognitionRequest = recognitionRequest else { fatalError("Unable to create a SFSpeechAudioBufferRecognitionRequest object") } recognitionRequest.shouldReportPartialResults = true - - // Keep speech recognition data on device - if #available(iOS 13, *) { - recognitionRequest.requiresOnDeviceRecognition = false - } + recognitionRequest.requiresOnDeviceRecognition = false self.textHeard = "" self.latestText = ""