sirikit

SiriKit support for general services

谁都会走 提交于 2019-12-01 09:20:22
I have watched SiriKit in wwdc and read document. https://developer.apple.com/library/prerelease/content/documentation/Intents/Conceptual/SiriIntegrationGuide/ Add SiriKit support only if your app implements one of the following types of services: Audio or video calling Messaging Payments Searching photos Workouts Ride booking I am still wondering whether I can do for other services (since my app will be for enterprise app). My service will be very simple searching only like "Find SQ212 in myapp". Can it be done? I afraid that sirkit can't support intent for other servies. No, you can't. That

Invalid Siri Support - Warning iTunes Connect

China☆狼群 提交于 2019-12-01 07:07:54
问题 I'm integrate SiriKit in my app for ride a book but after send my app to TestFlight I get a mail response with the next warnings. Invalid Siri Support - No example phrase was provided for INGetRideStatusIntent in the "en-CO" language Invalid Siri Support - No example phrase was provided for INRequestRideIntent in the "en" language I have added the necessary translation to my InfoPlist.string for each localised version but the problem still happens. I'm using the AppIntentVocabulary.plist

SiriKit, How to display response for start Workout Intent?

↘锁芯ラ 提交于 2019-12-01 06:28:32
IntentHandler class: import Intents class IntentHandler: INExtension, INStartWorkoutIntentHandling { public func handle(startWorkout intent: INStartWorkoutIntent, completion: @escaping (INStartWorkoutIntentResponse) -> Void) { let userActivity = NSUserActivity(activityType: NSStringFromClass(INStartWorkoutIntent.self)) let response = INStartWorkoutIntentResponse(code: .continueInApp, userActivity: userActivity) completion(response) } //MARK: - INStartWorkoutIntentHandling func confirm(startWorkout intent: INStartWorkoutIntent, completion: @escaping (INStartWorkoutIntentResponse) -> Void) {

SiriKit, How to display response for start Workout Intent?

坚强是说给别人听的谎言 提交于 2019-12-01 04:43:49
问题 IntentHandler class: import Intents class IntentHandler: INExtension, INStartWorkoutIntentHandling { public func handle(startWorkout intent: INStartWorkoutIntent, completion: @escaping (INStartWorkoutIntentResponse) -> Void) { let userActivity = NSUserActivity(activityType: NSStringFromClass(INStartWorkoutIntent.self)) let response = INStartWorkoutIntentResponse(code: .continueInApp, userActivity: userActivity) completion(response) } //MARK: - INStartWorkoutIntentHandling func confirm

Does Apple provide an API for SIRI?

牧云@^-^@ 提交于 2019-11-26 20:49:23
Is it possible that Apple does or will provide an API for Siri? It would be great if I can be sipping my coffee and say, User: Hey Siri, could you please open Angry Birds; Level 4 and throw a first bird for me. Make sure you at least hit one green pig or it's coming out of your paycheck. Siri: Yes sure, I will do that for you. Is this possible? And would you think Apple will provide this to us? Bhumit Mehta In iOS 10, Apple has announced an API for Siri called SiriKit . However, you can only do it as an app extension and only if your app implements one of the following types of services: Audio