Since iOS 18, I have an OpenIntent to open documents.
For Siri AI, I understood that I need to annotate the entity with
@AppIntent(schema: .system.open)
for Siri AI to be able to open documents.
This is only supported starting with iOS 27.
I tried duplicating the intent (one for iOS 27, one for the other versions), however, Xcode complains and says that only one OpenIntent is possible per target entity.
How are we supposed to:
- support Siri AI "open" functionality
- preserve functionality for older iOS versions
?
Thank you