I am working on a project to integrate Google Assistant with an existing Android application. The requirements are simple. Assuming my application is called TestApp and I want it to just change the background color of the applicationโs home page, I want to say:
Msgstr "Hello Google, change the background to black on TestApp."
They gave me links to ActionsSDK , but looking at it, I see that this is only a standalone application that extends Google Assistant and has nothing to do with android itself.
The closest API that I found does what I need is voice interactions . This is very similar to what I need to do, but it allows only predefined voice triggers, such as "call this person ..." or "set the alarm to ...", but cannot "change the background ...", as in my example. This link does not allow user voice actions.
So my question is, is it possible to interact directly with my application, and it performs a very simple task?
thanks
source share