>From the docs:
http://developer.android.com/tools/help/adb.html 

Directing Commands to a Specific Emulator/Device Instance
------------------------------

If multiple emulator/device instances are running, you need to specify a 
target instance when issuing adb commands. To so so, use the -s option in 
the commands. The usage for the -s option is:

adb -s <serialNumber> <command> 

As shown, you specify the target instance for a command using its 
adb-assigned serial number. You can use the devicescommand to obtain the 
serial numbers of running emulator/device instances.

Here is an example:

adb -s emulator-5556 install helloWorld.apk

Note that, if you issue a command without specifying a target 
emulator/device instance using -s, adb generates an error.

On Sunday, June 24, 2012 6:59:59 PM UTC+1, Jaxily wrote:
>
> How can you use adb unistall when I have two devices installed on my 
> machine.  One device is easy, but two devices the uninstall command doesn't 
> know which one.  Thanks
>
> www.jaxily.com
>

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to