Last active
November 22, 2015 17:58
-
-
Save draekko/2824dd7f3237ce090c4f to your computer and use it in GitHub Desktop.
Android / ADB / Remote Emulator - Local AS/Eclipse
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Remote system | |
-------------------------------------------------------------------- | |
adb kill-server | |
emulator -avd android_virtual_device | |
Local system | |
-------------------------------------------------------------------- | |
ssh -NL 5556:localhost:5554 -L 5557:localhost:5555 user@remotesystem | |
adb connect localhost:5557 | |
Steps | |
-------------------------------------------------------------------- | |
1. Setup remote system | |
2. Setup local system | |
* make sure to leave ssh up and running to keep the connection up | |
and running. | |
3. Use as usual. | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment