-
-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Android ADB: WiFi Connect #429
Labels
Comments
Android ADB WiFi 无线调试
手机设置:
锁屏/息屏设置:小米/红米手机: (澎湃 OS)
Oppo/一加手机: (ColorOS)
调试模式 + 不息屏:
|
Android 开机自动启动 无线调试:
方案: 非 root 权限
# 设置开启无线调试
setprop persist.adb.tls_server.enable 1
# 设置端口号
setprop service.adb.tls.port 5555
方案: root 权限
# 修改 /system/build.prop ,在末尾增加一条
service.adb.tcp.port=5555
参考: |
ADB 常用指令:查看 Android 版本:
# 获取 Android 系统版本:
adb shell getprop ro.build.version.release
# 获取系统api版本:
adb shell getprop ro.build.version.sdk
# 查看 Android 版本:
getprop ro.build.version.release
getprop ro.build.version.sdk |
1 |
1 similar comment
1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
📖 Abstract:
💯 Related:
The text was updated successfully, but these errors were encountered: