adb操作手机

adb shell pm list package
//查看详情
adb shell pm list packages -f
adb shell pm list packages:列出所有的包名。
adb shell dumpsys package:列出所有的安装应用的信息
adb shell am monitor 监测软件执行
adb shell dumpsys package com.android.XXX:查看某个包的具体信息


//启动抖音
adb shell am start -n com.ss.android.ugc.aweme/com.ss.android.sdk.activity.BootstrapActivity
    
//从下往上划
adb shell input swipe 850 1550 850 800
//点击
adb shell input tap 1050 1250
//点击留言
adb shell input tap 1000 1450
//准备留言
adb shell input tap 600 2100
//发送留言
adb shell input tap 1000 1150

...
原文地址:https://www.cnblogs.com/javage/p/13615207.html