分类: android

13 篇文章

adb 查询手机信息
# 显示当前 ip .\adb.exe shell ip addr show wlan0 10.168.90.72 link/ether 为当前 MAC 地址 brd 为当前广播地址 # 显示外网 ip .\adb.exe shell curl -s http://members.3322.org/dyndns/getip .\adb.exe sh…
adb 设置全屏沉浸命令
# 沉浸式状态栏 导航栏 adb shell settings put global policy_control immersive.full=* # 沉浸状态栏: adb shell settings put global policy_control immersive.status=* # 沉浸导航栏: adb shell settings…
adb 读取 android 剪贴板
https://github.com/majido/clipper # 下载并安装 clipper.apk # 启动应用,新版本中应用置前才能使用 .\adb.exe shell am start ca.zgrs.clipper/.Main # 复制 .\adb.exe shell am broadcast -a clipper.get # 这是粘…