I am stuck with this problem and have spent hours on fixing but so far no progress.
It works well when i install app via xCode.
But when i upload Archive with App Store Connect I got this:
Invalid Intent. The '***.app/PlugIns/IntentsExtension.appex' Info.plist contains an invalid intent 'INDisplayPropertyValuelntent'. Remove the 'INDisplayPropertyValueIntent' intent from both the IntentsSupported and IntentsRestrictedWhileLocked arrays.
Removing the intent from the plist as suggested the app does not work anymore.
Here is my Info.plist:
<dict>
<key>NSExtension</key>
<dict>
<key>NSExtensionAttributes</key>
<dict>
<key>IntentsRestrictedWhileLocked</key>
<array/>
<key>IntentsRestrictedWhileProtectedDataUnavailable</key>
<array/>
<key>IntentsSupported</key>
<array>
<string>INDisplayPropertyValueIntent</string>
</array>
</dict>
<key>NSExtensionPointIdentifier</key>
<string>com.apple.intents-service</string>
<key>NSExtensionPrincipalClass</key>
<string>$(PRODUCT_MODULE_NAME).IntentHandler</string>
</dict>
</dict>