flutter 的 debug 模式没有任何问题 ,打了release 包后一直报下面的错,查了一下是 因为没有网络权限
Error: SocketException: Failed host lookup: 'yomi-test-aws-sg.yomigame.games' (OS Error: No address associated with hostname, errno = 7)
按照下面的来解决文章来源:https://www.toymoban.com/news/detail-859459.html
Flutter 网络请求报错 Failed host lookup:
一、如果是iOS真机调试报错
1.检查iOS是否开启网络权限(在设置中检查一下),(如果HTTP,在info中 添加 ATS)
二、如果是Android模拟器或真机调试报错
在debug和release目录中的AndroidManifest.xml中加上
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
如果还是不行,执行
flutter clean文章来源地址https://www.toymoban.com/news/detail-859459.html
到了这里,关于flutter release 报错 Error: SocketException: Failed host lookup:的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!