Posts

Post marked as solved
4 Replies
NVM I found it over at - https://developer.apple.com/design/resources/
Post not yet marked as solved
5 Replies
I am also having this issue with a custom intent. My Intent handler is called StartMeetingIntent and you can call it either with no value or with one value. But the next messages says the following: INCExtensionManagerFetchMatchingSiriExtensionForIntent_block_invoke_2 Failed to find extension Error Domain=INExtensionMatchingErrorDomain Code=3001 "(null)" UserInfo={ExtensionPointName=com.apple.intents-service} error 21:29:18.173171-0400 Shortcuts -[WFAction runWithInput:userInterface:parameterInputProvider:variableSource:completionHandler:]_block_invoke Action &lt;WFHandleCustomIntentAction: 0x7f81cec74fc0, identifier: com.company.appname.StartMeetingIntent, parameters: 2&gt; '' And here's my code to handle the intent import Intents import SwiftUI import os class StartMeetingIntentHandler: NSObject, StartMeetingIntentHandling {     let logger=Logger(subsystem: "com.company.appname", category: "Start Meeting Intent")     var people: [INObject]?     func handle(intent: StartMeetingIntent, completion: @escaping (StartMeetingIntentResponse) -> Void) {         if let attendees = intent.people {             completion(StartMeetingIntentResponse.success(result: attendees))         } else {             logger.log("failure")         }     }     func resolvePeople(for intent: StartMeetingIntent, with completion: @escaping (StartMeetingPeopleResolutionResult) -> Void) {         let people = Int(truncating: intent.people ?? 0)         if people < 0 {             completion(StartMeetingPeopleResolutionResult.unsupported(forReason: StartMeetingPeopleUnsupportedReason.negativeNumbersNotSupported))         } else if people > 1000 {             completion(StartMeetingPeopleResolutionResult.unsupported(forReason: StartMeetingPeopleUnsupportedReason.greaterThanMaximumValue))         } else {             completion(StartMeetingPeopleResolutionResult.success(with: people))         }     } } And the IntentHandler is - class IntentHandler: INExtension, INSendMessageIntentHandling, INSearchForMessagesIntentHandling {     let logger=Logger(subsystem: "com.company.appname", category: "Intent Handler")     override func handler(for intent: INIntent) -> Any {         logger.log("\(intent)")         switch intent {         case is StartMeetingIntent:             return StartMeetingIntentHandler()         default:             fatalError("No handler for this intent")         }     } } Any pointers would be gratefully appreciated.
Post marked as solved
3 Replies
Best I can tell, if I use .padding(.all, 10) I am able to extend the background and fix the issue. Is this the correct approach?
Post marked as solved
3 Replies
So for Big Sur I should no longer have the catalyst identifier defined as: maccatalyst.com.me.name ? but it should match the iOS identifier as com.me.name
Post not yet marked as solved
11 Replies
I am seeing this on my new Shortcut, did anyone ever come up with an answer on how you debug this.
Post marked as solved
4 Replies
I am running a pi-hole on my local network, so I have added the speedtracer to my whitelist, so will see if this fixes that.
Post marked as solved
1 Replies
Resolved, the problem was I had embedded the intent handler as a plug-in not as an extension.
Post marked as solved
3 Replies
Noticed that after I rebuilt the app completely.
Post marked as solved
3 Replies
Nevermind, when I created the Widget it had preselected the Include Configuration Intent information.. restarting to fix
Post marked as solved
4 Replies
Ultimately resolved, can't remember what I did.. and the forums never notified me of posts so I could react back then. Wonder if I can just delete this message.
Post marked as solved
4 Replies
I am also seeing this - NSURLConnection to https://speedtracer.apple.com/tracer/analyze failed with error: A server with the specified hostname could not be found.
Post not yet marked as solved
1 Replies
I am having this same issue myself today.. did you find a solution?Path:&#9;&#9;&#9;&#9;&#9;&#9;&#9;&#9;&#9;/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime/Contents/Resources/RuntimeRoot/System/Library/CoreServices/SpringBoard.app/SpringBoard Identifier:&#9;&#9;&#9;&#9;&#9;&#9;SpringBoard Version:&#9;&#9;&#9;&#9;&#9;&#9;&#9; 1.0 (50) Code Type:&#9;&#9;&#9;&#9;&#9;&#9; X86-64 (Native) Parent Process:&#9;&#9;&#9;&#9;launchd_sim [800] Responsible:&#9;&#9;&#9;&#9;&#9; SimulatorTrampoline [746] User ID:&#9;&#9;&#9;&#9;&#9;&#9;&#9; 501 Date/Time:&#9;&#9;&#9;&#9;&#9;&#9; 2020-06-24 15:49:40.114 -0400 OS Version:&#9;&#9;&#9;&#9;&#9;&#9;Mac OS X 10.16 (20A4299v) Report Version:&#9;&#9;&#9;&#9;12 Bridge OS Version:&#9;&#9; 5.0 (18P50310o) Anonymous UUID:&#9;&#9;&#9;&#9;627D7A1F-DDFC-8DCE-8ACF-0ECBAB9020EA
Post not yet marked as solved
3 Replies
I am also getting this same message... how did you resolve this?
Post marked as solved
4 Replies
I have confirmed that no other copy of the program is running.
Post marked as solved
7 Replies
I don't have that issue... However, this morning the upload Is working... I had a call with Apple Developer support last night and there was an issue with the store before...