adb shell
adb push <local> <remote>
adb pull <remote> <local>
adb install <local.apk>
adb uninstall <packagename>
adb uninstall的说明:
adb uninstall <package>这个package,就是你创建项目时填的那个package对于未知apk,可以使用apktool工具反编译,查看AndroidManifest文件确定比如....<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.androidbook.myfirstandroidapp"....对应的 卸载命令为:adb uninstall com.androidbook.myfirstandroidapp附:apk反编译与编译
http://code.google.com/p/android-apktool/
使用apktool:反编译:apktool d <xx.apk> 编译打包:apktool b [<app_path>] ,打包好后经过签名即可安装。