I want to integrate Google Voice Action to support user queries from Google Assistant
like Find xyz on app_name
or Find xyz using app_name
.
I have successfully integrated SEARCH_ACTION
which supports user query from Google Assistant
like Search xyz on app_name
or Search xyz using app_name
. I have done this using Search using a specific app.
How can I enable search with Find
keyword? Twitter is supporting both options to Search using Find
or Search
keyword. But I am not able to find any documentation for this and it is not working with SEARCH_ACTION
intent Filter.
Edit:
As per above documentation link, I have an Activity like,
<activity android:name=".SearchActivity">
<intent-filter>
<action android:name="com.google.android.gms.actions.SEARCH_ACTION"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
But this is only handling query like Search xyz on app_name
.