Reputation: 6196
I just started learning the Android SDK and I'm trying to run another emulator via command line. When I run the command:
android emulator -avd sender
from C:\Program Files\Android\android-sdk\tools, I get the following error.
Error: Expected verb after global parameters but found 'emulator' instead.
I actually got it to work once. I have already created an AVD called sender via AVD manager..
Am I missing something?
Upvotes: 0
Views: 2831
Reputation: 6526
Try
emulator.exe -avd sender
from command line in C:\Program Files\Android\android-sdk\tools.
This will tell the emulator.exe to open android virtual device "sender", assuming that you already created one virtual device called sender.
Upvotes: 2