Skip to content

Instantly share code, notes, and snippets.

@psykidellic
Created May 22, 2012 18:05
Show Gist options
  • Save psykidellic/2770626 to your computer and use it in GitHub Desktop.
Save psykidellic/2770626 to your computer and use it in GitHub Desktop.
Steps to do Android on command line
I always forget the steps and I have to look up the original blog post:
http://www.aplusbi.com/?p=164
android list target #shows you all the ones that have SDK installed
android list avd #We have already created a devices
#create a new avd from target
android create avd --target 2 --name ginger
#starting the emulator with the device
emulator -avd ginger
#Install
adb install bin/Raseed.apk
#Uninstall
adb uninstall com.raseedapp.com (ideally use ant)
#ant
ant install bin/Raseed.apk (this will actually uninstall and then reintsall)
@MohammadGETHUP
Copy link

/c/CDUsers

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment