Last active
May 13, 2016 21:45
-
-
Save DylanLacey/ef1215c871f58594e986 to your computer and use it in GitHub Desktop.
Load an image onto an Android emulator
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
#!/bin/bash | |
cd $ANDROID_HOME/platform-tools | |
echo `adb devices` | |
curl -O http://i.imgur.com/0H5GsQV.png | |
adb push 0H5GsQV.png /sdcard/Download | |
echo $ANDROID_HOME |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment