Created
April 26, 2013 18:26
-
-
Save bmoore/5469346 to your computer and use it in GitHub Desktop.
Android build and Ant debug install tool
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 | |
android update project --path ./ | |
if [ $? -ne 0 ] | |
then | |
exit | |
fi | |
ant debug install | |
if [ $? -ne 0 ] | |
then | |
exit | |
fi | |
#adb shell am start -a android.intent.action.MAIN -n com.example.helloworld/.MainActivity | |
#if [ $? -ne 0 ] | |
#then | |
# exit | |
#fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Maybe even start the project from the tool as well... Want to parse AndroidManifest.xml and get the right parameters