Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SiriKit app getting "App installation failed" error while installing app

Tags:

ios

sirikit

Error,

This app or an app that it contains has a Siri Intents app extension that declares values in its IntentsRestrictedWhileLocked key's array value that are not in its IntentsSupported key's array value (in the NSExtensionAttributes dictionary in the NSExtension dictionary in its Info.plist).

I have added one item in IntentsRestrictedWhileLocked.

like image 714
Mohammad Zaid Pathan Avatar asked Nov 21 '25 09:11

Mohammad Zaid Pathan


1 Answers

So the solution is, any Item which is in IntentsRestrictedWhileLocked items must be in IntentsSupported.

This will ask user to unlock iOS device first to perform action of this Intent INPayUsingApp. Pay using app

In the IntentsRestrictedWhileLocked key, add a String item for each intent for which you require the device to be unlocked. Set the value of each item to the class name of the intent.

This will ask user to unlock iOS device first to perform action of this Intent.

like image 200
Mohammad Zaid Pathan Avatar answered Nov 22 '25 21:11

Mohammad Zaid Pathan