Android常用命令行-ADB

配置环境:

  • MAC上配置环境

  (1)启动终端。可以在Spotlight中搜索“终端”

  (2)进入HOME目录。在"终端"中输入指令:cd $HOME

  (3)更新.bash_profile文件。如果不存在该文件,可以输入指令创建:touch .bash_profile

  (4)打开.bash_profile文件,输入指令:open -e .bash_profile

  (5)配置ADB环境。输入你自己的路径:

      export PATH=${PATH}:/Users/apple/Library/Android/sdk/platform-tools

      export PATH=${PATH}:/Users/apple/Library/Android/sdk/tools

  (6)保存文件,关闭.bash_profile

  (7)更新环境变量,指令:source .bash_profile

    (8)检查是否配置成功。指令:adb devices。

             ADB配置成功

       如出现上述结果,表示配置成功

常用ADB命令:

1、启动SDK Manager:  android
2、启动DDMS:dams
3、获取当前运行的所有模拟器:adb devices
4、安装应用程序:adb install -r 应用程序.apk
     卸载应用程序:adb uninstall 应用程序包名
5、获取模拟器中的文件:adb pull <remote> <local>
6、向模拟器中写文件:add push <local> <remote>
7、进入模拟器shell模式:adb shell
8、命令行中查看Log信息:adb logcat -s 标签名
9、查看帮助信息:adb help
10、只过滤某个包名下的日志:adb logcat | grep “com.xsp”

终端
1、打开多个终端:command +N
2、打开多个窗口:command + T


adb shell
grep
adb bash

posted @ 2016-10-31 21:58  xsp单细胞  阅读(268)  评论(0编辑  收藏  举报