出现此错误的原因是因为使用了http链接,gradle出于安全考虑必须使用https链接
第一种解决方案是可以加一行参数允许http链接
maven {
allowInsecureProtocol = true //这一行
url 'xxxxxxx'
}
第二种方法是将url改为https://xxxxxx
常规出现这种问题的原因就这两种,还有一种配置文件会一层一层引用
android/app/build.gradle -> flutter-tools/flutter.gradle -> C:/Users/XXX/.gradle/init.gradle文章来源:https://www.toymoban.com/news/detail-542610.html
其中某一个文件的gradle里出现了http,将其用上面两种问题修正即可解决 文章来源地址https://www.toymoban.com/news/detail-542610.html
到了这里,关于Using insecure protocols with repositories, without explicit opt-in, is unsupported.解决方案的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!