Recently I updated to Xcode 14.0. I am building an iOS app to convert recorded audio into text. I got an exception while testing the application from the simulator(iOS 16.0).
[SpeechFramework] -[SFSpeechRecognitionTask handleSpeechRecognitionDidFailWithError:]_block_invoke Ignoring subsequent recongition error: Error Domain=kAFAssistantErrorDomain Code=1101 "(null)"
Error Domain=kAFAssistantErrorDomain Code=1107 "(null)"
I have to know what does the error code means and why this error occurred.
Post
Replies
Boosts
Views
Activity
objc[1179]: Class SBFCARendererImageRepresentation is implemented in both /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/SpringBoardFoundation.framework/SpringBoardFoundation (0x1472855a0) and /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/PrivateFrameworks/PaperBoardUI.framework/PaperBoardUI (0x146af9930). One of the two will be used. Which one is undefined.
I made an app using the App Intents to get user string input. If I use the shortcut via Siri the string input provided is incomplete.
Note : I am testing my app in the simulator(iOS 16, iPhone 14 pro).
The app references non-public selectors in Payload/Frameworks/AWSAuthCore.framework/AWSAuthCore: reloadSession.
Xcode 14.0.1
The Siri language code return empty string. What to do?
Recently I was trying to create an app shortcut using App Intents to experience the zero setup feature. The zero setup feature was working fine in Xcode 14 beta simulators but in Xcode 14 release version it is not working. I referred the App Intents documentation, the document says that while developing create the app shortcut from the shortcut app (https://developer.apple.com/documentation/appintents/providing-your-app-s-capabilities-to-system-services). My question is, Does the zero setup feature works when app is published?