当前位置:   article > 正文

adb 一些常用的命令_adb 根据包名进入原生系统

adb 根据包名进入原生系统

1、打开系统的原生的设置

adb shell am start com.android.settings/com.android.settings.Settings
  • 1

2、重启一个应用

adb shell am force-stop 包名
  • 1

3、设置镜像

adb shell
//镜像副驾
setprop debug.sf.multidisplay 2
 
 
//镜像仪表
setprop debug.sf.multidisplay 3
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

4、设置分辨率

// 1.不带display参数,默认注入到中控屏幕
adb shell input tap 1800 700
// 2.指定display为0,注入到中控屏幕
adb shell input tap 1800 700 --display 0
// 3.指定display为1,注入到副驾驶屏幕
adb shell input tap 1800 700 --display 1
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

5、设备可能有隐藏的应用,想要显示设备的全部应用

显示所有应用:
adb shell setprop debug.fuxi.showallapp true
adb shell pkill launcher
  • 1
  • 2
  • 3

6.设置屏保时间:

adb shell settings put system fuxi_dream_off_timeout 2147483647

  • 1
  • 2

7.测试首次启动时间


adb shell am start -W com.fuuuuxi.filemanager/com.fuuuuxi.filemanager.MainActivity

  • 1
  • 2
  • 3

8.adb logcat

通过字符过滤
adb logcat | grep MyApp

//格式1:打印默认日志数据
adb logcat 

//格式2:需要打印日志详细时间的简单数据
adb logcat -v time

//格式3:需要打印级别为Error的信息
adb logcat *:E

//格式4:需要打印时间和级别是Error的信息
adb logcat -v time *:E

//格式5:将日志保存到电脑固定的位置,比如D:\log.txt
adb logcat -v time >D:\log.txt


  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19

7.当我们想要对上一次的提交进行修改时
https://www.jianshu.com/p/a8a2ac58f37d

git commit --amend
 git push origin HEAD:refs/for/master
  • 1
  • 2
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/134400
推荐阅读
相关标签
  

闽ICP备14008679号