Created
May 22, 2012 18:05
-
-
Save psykidellic/2770626 to your computer and use it in GitHub Desktop.
Steps to do Android on command line
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
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) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
/c/CDUsers