我正在使用以下命令在android上执行实时重新加载
ionic capacitor run android --livereload --external
但是它不起作用。
这是我得到的错误
The web page at http://localhost:8100/ could not be loaded because net : ERR_CONNECTION_REFUSED
我知道移动设备不了解localhost,但我认为--external
标志会解决这个问题。现在我要做的是在Android上进行实时重装。
提前谢谢您
#1:打开android/app/src/main/AndroidManifest.xml
。
#2:将其添加到标签的AndroidManifest.xml
中(标签应用程序已存在):
<application android:usesCleartextTraffic="true">
[<application android:usesCleartextTraffic="true">
仅对于API级别> 28可能需要。
#3:使用PC主机运行实时重新加载。
ionic capacitor run android -l --address=192.168.2.106
代替192.168.2.106您将PC地址输入。
#4:照常使用连接的设备运行Android Studio之后。