1.准备工具 adb、fastboot工具。twrp recovery 最新版
2.按住手柄a+b+home键,插电开机,进入fastboot模式。
3.输入代码引导twrp recovery启动
fastboot boot twrp3.7.
- 1
(将上面映像文件名称替换成你自己的)
4.检查是否引导成功
adb devices
- 1
返回条目中,连接设备类型为recovery表示成功。
5.进入adb Shell模式
adb shell
- 1
6.挂载system分区
adb mount -o remount ,rw /system
- 1
7.写入跳过验证函数。
echo "=DISABLED" >> /system/
- 1
8.重启设备
adb reboot
- 1
等待设备开机,就跳过google注册了。
进入设备后开启开发者模式跟USB调试。
9.修改时区及NTP服务器:
adb shell settings get global time_zone
adb shell settings put global time_zone Asia/Shanghai
adb shell settings put global ntp_server
- 1
- 2
- 3
- 4
- 5
10.解决网络受限提示
adb shell settings delete global captive_portal_https_url
adb shell settings delete global captive_portal_http_url
adb shell settings put global captive_portal_https_url /generate_204
adb shell settings put global captive_portal_http_url /generate_204
- 1
- 2
- 3
- 4
- 5
- 6
- 7
剩下就可以正常使用了。