[ERROR] 'mirrors.mirror.mirrorOf' for allow-insecure is missing @
时间: 2024-09-13 19:15:50 浏览: 92
maven-阿里云-mirrors.txt.zip
这个错误提示通常出现在Android Studio或者Gradle构建工具中,它表示你尝试在一个不允许不安全连接的环境中访问远程仓库(如`mavenCentral()`、`jcenter()`等)。`mirrorOf`函数是用来设置本地镜像或者备用仓库,但需要添加`@allowInsecureContent`注解才能允许加载不受信任的内容。
正确的语法应该是这样的:
```groovy
allprojects {
repositories {
mavenCentral() // 或者 jcenter()
maven { url "<your-mirror-url>" } // 如果有自定义镜像
maven { url "https://jitpack.io" }
// 添加以下注解允许不安全内容
maven {
url 'https://dl.bintray.com/<repository-name>'
name '<repository-name>' // 可选,但推荐
credentials {
username '<username>' // 镜像用户名
password '<password>' // 镜像密码
}
@allowInsecureContent true
}
}
}
```
阅读全文