I have added Siri Shortcuts in my phone and whenever I call the shortcut in the Siri, it opens the iOS Application.
It doesn't execute the intent which i have wrote.
Following is my IntentHandler.swift
import Intents
class IntentHandler: INExtension {
override func handler(for intent: INIntent) -> Any {
// This is the default implementation. If you want different objects to handle different intents,
// you can override this and return the handler you want for that particular intent.
return self
}
}
I resolved it by returning the instance of intent handler.
and added the following methods in the
AppDelegate
file whereViewPointsIntent
is the intent of the Siri Shortcut.