Reputation: 516
I have an app installed on Android Wear Emulator that I can directly run from Start->MyApp. However when I want to start it with voice command i.e. Start MyApp, it keeps waiting for something but does not complete. What could be reason for this?
Upvotes: 1
Views: 736
Reputation: 3232
There is a limitation of the current emulator that it does not support voice actions via the keyboard, even though the text appears on the display. You will need to start the application by clicking on the display, then the red G, and then going to the start menu and picking the app from there. You can also quickly start the application using something like this from your development machine:
adb shell am start -n com.example.android.test/.TestActivity
Upvotes: 4
Reputation: 8094
The watch needs to be connected to a phone (device or emulator) with an internet connection for the voice commands to work.
Upvotes: 0