I am currently adding SiriKit in my application and I have created an INExtension class. In my Info.plist I have the following code as below.
But each time I try to run the Intent Extension class on my device, none of the override handle methods are called by Siri. I have added logs in each methods but to no success. Is there anything else I am missing ?
Also FYI before posting this I referred the link but there were no answers: Link
<key>NSExtension</key>
<dict>
<key>NSExtensionAttributes</key>
<dict>
<key>IntentsRestrictedWhileLocked</key>
<array>
<string>INSearchForAccountsIntent</string>
</array>
<key>IntentsSupported</key>
<array>
<string>INSearchForAccountsIntent</string>
</array>
</dict>
<key>NSExtensionPointIdentifier</key>
<string>com.apple.intents-service</string>
<key>NSExtensionPrincipalClass</key>
<string>$(PRODUCT_MODULE_NAME).IntentHandler</string>
</dict>