How can I add a system intent to the scene in the Action Builder?
E.g. I want to add one of the media intents: actions.intent.MEDIA_STATUS_STOPPED
, actions.intent.MEDIA_STATUS_PAUSED
,...
When you try to add one of these to the scene, you will get the error:
Name can only contain letters, numbers, and underscores. The name also must start with a letter.
If you try to add it without the "actions.intent." part, e.g. MEDIA_STATUS_STOPPED
it will be treated as a user's custom intent. And because of it, it won't handle any callback for the Media object state changes.
The documentation is silent about it.