AlexZ33 / lessions

自己练习的各种demo和课程
12 stars 2 forks source link

adb 命令 #117

Open AlexZ33 opened 3 years ago

AlexZ33 commented 3 years ago
adb shell am force-stop PACKAGE_NAME # 强制停止应用运行(com.miui.home 为桌面)
adb push SRC_FILE TARGET_DIR # 向手机拷贝电脑端SRC_FILE文件到手机端TARGET_DIR目录

# 分辨率切换
adb shell wm size 720x1080
adb shell wm density 320

# 分辨率重置
adb shell wm size reset
adb shell wm density reset