关于Android Studio模拟器连不上局域网站点的解决办法
同事谷歌找到的..亲测有用 做个笔记
1、打开终端,输入命令行
cd ~/User/你的用户名/Library/Android/sdk/platform-tools
2、依次执行以下命令
adb root
adb disable-verity
adb reboot
adb root
adb remount
adb pull /system/etc/hosts ~/Documents/ -- 将hosts文件复制到桌面上
3、此时你已经将android模拟器的hosts文件复制在了桌面上了,修改hosts文件(直接从电脑hosts复制过来)
4、执行下列命令
adb push ~/Documents/hosts /system/etc/hosts -- 将修改好的hosts文件重新覆盖到android模拟器上
执行到这一步后就ok了。如果弄完还是没效果的话再反复执行第二部...不知道什么原因,谜一样的好了。一般一次就把本地host push到模拟器里边了