当前位置:   article > 正文

Android常用的 adb shell命令_shell安卓

shell安卓

1.安卓常用的shell命令

  • 打开网络adb

    setprop persist.internet.adb.enable 1
    
    • 1
  • 设置永久调试的属性

    setprop persist.otg.mode device 
    
    • 1
  • 设置永久usb模式

    setprop persist.otg.mode host
    
    • 1
  • 打开原生系统设置

    adb shell am start com.android.settings/com.android.settings.Settings
    
    
    adb shell am start com.tencent.qqmusiccar/com.tencent.qqmusiccar.app.activity.AppStarterActivity
    
    
    adb shell am start com.tencent.mm/com.tencent.mm.ui.LauncherUI
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
  • remount不成功的解决方案

     adb disable-verity
    
    • 1
  • 运行某个系统文件

    ./ 文件名
    
    • 1
  • 根据包名查找apk所在的位置

    pm path 包名
    
    • 1
  • 合并提交记录

    git rebase -i
    git rebase --abort (解决上次rebase未执行完成的问题)
    squash
    git rebase -i Head~2
    
    • 1
    • 2
    • 3
    • 4
  • 清理日志

    adb logcat -c
    
    • 1
  • 启动service

    adb shell am startservice -n {包(package)名}/{包名}.{服务(service)名称}
    adb shell am startservice -n com.hopechart.core/com.hopechart.core.service.HQCoreService
    
    • 1
    • 2
  • 启动广播

    adb shell am broadcast -a <广播动作>
    如:发送一个网络变化的广播
    --es 表示使用字符串类型参数  --ei 表示int类型参数  --ez 表示boolean类型参数   --el  标示long类型的参数    --esal  标示string类型的数据 
    adb shell am broadcast -a com.txznet.adapter.send --ei key_type 1020 --es action light.min
    
    • 1
    • 2
    • 3
    • 4
  • 关闭activity

    adb shell am force-stop {包(package)名}
    如:关闭Activity
    adb shell am force-stop com.hopechart.radio
    
    • 1
    • 2
    • 3
  • 修改权限

    命令中r=4,w=2,x=1
    chmod 644 system/app/Demo.apk
    
    • 1
    • 2
  • 查看正在运行的service

    adb shell dumpsys activity services [<packagename>]
    
    • 1
  • 查看正在运行的activity

    adb shell dumpsys activity [<packagename>]
    
    • 1
  • 清理应用数据

    adb shell pm clear com.hopechart.radio
    
    • 1
  • 删除

    rm -r /mnt/sdcard/AppFolder   
    
    • 1
  • 获取手机上已经安装的所有的程序

    pm list packages
    
    • 1
  • 过滤

    | findstr 
    | grep 
    
    • 1
    • 2
  • 查看内存信息

    cat /proc/meminfo 
    
    • 1
  • 打包程序

gradlew  clean 清理工程
gradlew assembleRelease(打包Release包)
gradlew assembleDebug (打包Debug包)
  • 1
  • 2
  • 3
  • 查看音频信息
dumpsys audio
  • 1
  • linux下remount
mount -o remount /
  • 1
  • 查看平台
adb shell getprop ro.product.manufacturer
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/很楠不爱3/article/detail/733985
推荐阅读
相关标签
  

闽ICP备14008679号