InetSocketAddress mAddress如何使用网址啊(用ngrok)
我用虚拟机调的,感觉做端口映射麻烦,就用了ngrok生产成了一个网址 类似 xxx.ngrok.com这种映射到本机的9123地址
但是安卓程序里
ConnectionConfig config = new ConnectionConfig.Builder(context) .setIP("xxx.ngrok.com") .setPort(80)
会报错,改成类似192.168.0.12的IP地址不报错
java.lang.RuntimeException: Unable to create service com.altairting.imooc.minatest.MinaService: android.os.NetworkOnMainThreadException
青椒如何解决....