I am working on a project to integrate the Google Assistant
with an existing Android app. The requirements are simple. Assuming my app is named TestApp
and I want it to just change the background color of the app home page, I want to be able to say,
"Hey Google, Change background to black on TestApp".
I was given links to ActionsSDK, but looking into it, I see that it is only a stand-alone app that extends Google Assistant
and has nothing to do with android itself.
The closest API I found that does what I need is the Voice Interactions. This is very similar to what I need done but it only allows preset voice triggers such as "call this person..." or "set alarm at...", but cannot do "change background..." like in in my example. According to this link, custom voice actions aren't allowed.
So my question is, is it possible to directly interact with my app and have it do a very simple task?
Thanks
search change background on TestAppp
, then Google will open a screen that allows user change background, you just need to confirm for finish this action withVoice
integrate. – Superimpose