I am messing around with SiriKit Intents and as part of that I am currently getting this error when trying to build:
Response.: Property name must contain characters
Never heard of it and all my Response and summary fields are definitely filled.
One thing I was trying out is to display the Printed Dialog
with newLines, which at least isn't possible with the normal INIntentDefinitionEditor(-thing) so what I did is basically editing the intents xml a bit like this:
...
<key>INIntentResponse</key>
<dict>
<key>INIntentResponseCodes</key>
<array>
<dict>
<key>INIntentResponseCodeConciseFormatString</key>
<string>Hi,
Nice to meet ${you}.
Goodbye.</string>
<key>INIntentResponseCodeConciseFormatStringID</key>
...
And I could see it working in the TextField in the IntentDefinitionEditor as well so I don't think that should be the reason or am I wrong and that actually broke it? .-.
EDIT: oh, and I do use those auto-complete 'symbols' (like ${you}
) and removing those didn't work either..
Any ideas welcome...