Android-ADB简单使用

  1. 获取Android应用进程启动和销毁的日志信息

    adb logcat -b  events | egrep "am_proc_died|am_proc_start" 
    
  2. 获取进程详细信息

    adb shell dumpsys activity
    
  3. 清理ADB 缓存

    adb shell logcat -b all -c
    
  4. 关闭正在运行的 adb 服务器

    adb kill-server
    
  5. 安装App

    adb install 
    
  6. 使用monkey做简单测试

    adb shell monkey --kill-process-after-error --ignore-security-exceptions --ignore-crashes --pct-appswitch 90 --pct-touch 10 --throttle 10000 --ignore-timeouts --ignore-native-crashes 100000000
    
    //--kill-process-after-error发生错误停止应用
    // --ignore-security-exceptions忽略许可错误
    //--ignore-crashes 忽略程序崩溃
    // --pct-appswitch 切换 Activity 事件 切换 Activity 事件是指在手机上启动一个 Activity 的操作
    // --pct-touch 触摸事件
    // 每个事件结束后的间隔时间
    //--ignore-timeouts 忽略程序ANR
    // --monitor-native-crashes 监视系统代码  用于指定是否监视并报告Android系统中本地代码的崩溃事件。
    
    
  7. adb shell:进入shell

  8. adb exit :退出shell

你可能感兴趣的:(基础知识,adb)