This repository was archived by the owner on Sep 10, 2022. It is now read-only.

Description
Hello,
On step 3 where it says to execute this command:
adb shell am start -a com.google.android.gms.actions.SEARCH_ACTION \
--es query "salad" com.recipe_app
If I execute it as a one single line, I get the following result:
>adb shell am start -a com.google.android.gms.actions.SEARCH_ACTION \ --es query "salad" com.recipe_app
Starting: Intent { act=com.google.android.gms.actions.SEARCH_ACTION pkg= --es }
Error: Activity not started, unable to resolve Intent { act=com.google.android.gms.actions.SEARCH_ACTION flg=0x10000000 pkg= --es }
If I copy/paste it directly from the tutorial (two lines) I get the following result:
>adb shell am start -a com.google.android.gms.actions.SEARCH_ACTION \
--es query "salad" com.recipe_appStarting: Intent { act=com.google.android.gms.actions.SEARCH_ACTION }
Plus I get the app prompted but not showing the results nor the filtered search as you can see here:

Any idea what am I doing wrong?
Thanks in advance!