Post

Replies

Boosts

Views

Activity

Reply to ITMS-90625 Error on App Store Connect with Siri Intents
I had this issue as well. Turned out I had two Supported Intents with similar names in my Info.plist for the Intent target. <key>NSExtension</key> <dict> <key>NSExtensionAttributes</key> <dict> <key>IntentsRestrictedWhileLocked</key> <array/> <key>IntentsRestrictedWhileProtectedDataUnavailable</key> <array/> <key>IntentsSupported</key> <array> <string>SelectGameCharacter</string> <string>SelectGameCharacterIntent</string> </array> </dict> <key>NSExtensionPointIdentifier</key> <string>com.apple.intents-service</string> <key>NSExtensionPrincipalClass</key> <string>$(PRODUCT_MODULE_NAME).IntentHandler</string> </dict> I removed SelectGameCharacter (the one without the Intent suffix) and it worked.
Jan ’21