This file contains 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
#!/bin/bash | |
# This script connects Android Debug Bridge to the VirtualBox Android VM. | |
# To get IP address of VM, launch VM, go to Terminal and type 'netcfg'. | |
# The IP is next to the eth0 interface | |
# Author: Cory Sytsma | |
printf "Connecting to VirtualBox Android VM...\n" | |
# Ratio office WiFi |
This file contains 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
#!/bin/bash | |
# This script starts the VirtualBox VM for Android | |
# Author: Cory Sytsma | |
printf "Starting VirtualBox Android VM...\n" | |
vboxmanage startvm Android |