google-search-platform

App already published onto Google Play but unable to use Google Voice Actions

只愿长相守 提交于 2020-01-01 17:25:30
问题 I am unable to successfully use the Google System Voice Actions "Search in App" ( com.google.android.gms.actions.SEARCH_ACTION ) on an app that I have already published onto Google Play (Private Channel) and downloaded onto my phone. The intent with the query extra from the search action is to be passed on to MainActivity after matching the intent filter. Before publishing the app, I have already tested the app using the adb command below which works perfectly: adb shell am start -a "com

Does google allow businesses to use “Did you Mean” feature as an api?? I would like to use it but I am not getting anything

一个人想着一个人 提交于 2019-12-08 16:27:39
问题 I want to use Google API for Did you mean feature. So basically I want to write a piece of code, which sends a word to Google search and either Google finds the exact hits or gives a "DID YOU MEAN" reply which i would use. Is it made available? Tried finding it but couldn't find. 回答1: So I invested some time and this what I've found 1/ You should have your custom search engine https://cse.google.com 2/ Configure it to search all webs https://support.google.com/customsearch/answer/2631040?hl

App already published onto Google Play but unable to use Google Voice Actions

雨燕双飞 提交于 2019-12-04 16:02:19
I am unable to successfully use the Google System Voice Actions "Search in App" ( com.google.android.gms.actions.SEARCH_ACTION ) on an app that I have already published onto Google Play (Private Channel) and downloaded onto my phone. The intent with the query extra from the search action is to be passed on to MainActivity after matching the intent filter. Before publishing the app, I have already tested the app using the adb command below which works perfectly: adb shell am start -a "com.google.android.gms.actions.SEARCH_ACTION" --es query "[query]" -n "com.testapp/.MainActivity" Below is my

How can I trigger the com.google.android.gms.actions.SEARCH_ACTION Google Now action for testing?

穿精又带淫゛_ 提交于 2019-12-04 09:34:25
问题 I am building an Android app and would like to integrate the ability to search using voice with Google Now Actions as described in this blog post. Before I push the app to the Play Store, is there a way to test my intent filter ( com.google.android.gms.actions.SEARCH_ACTION ), search expression handling, etc.? I've followed the documentation and included the intent filter as below: <activity android:name=".SearchActivity"> <intent-filter> <action android:name="com.google.android.gms.actions