flutter开发mac或者ios软件,提示Error: SocketException: Connection failed (OS Error: Operation not permitted,

336 阅读1分钟

发送请求:

Error: SocketException: Connection failed (OS Error: Operation not permitted, errno = 1), address = 192.168.1.243, port = 9080

解决方案

根据错误信息,发现是没有网络权限,申请网络权限就行。
在macos/Runner/目录下,找到DebugProfile.entitlements和ReleaseProfile.entitlements,加入以下配置:

	<key>com.apple.security.network.client</key>
    <true/>

DebugProfile.entitlements: 

Release.entitlements: 

再次发送请求就好了