Skip to content

Instantly share code, notes, and snippets.

@gaelbillon
Created December 20, 2012 10:06
Show Gist options
  • Save gaelbillon/4344374 to your computer and use it in GitHub Desktop.
Save gaelbillon/4344374 to your computer and use it in GitHub Desktop.
Android command line : uninstall -> clean -> build -> install -> run
android update project -p . -s -t android-16
cp ../xxx/mobile/final_version assets/www
adb uninstall com.xxxx.xxxx
ant clean
ant debug
adb install bin/xxxxg.apk
adb shell am start -n com.xxxx.xxxx/com.xxxx.xxxx.xxxx (last xxxx is activity name)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment