我按照迁移到新插件文档,添加google maven" https://maven.google.com"
buildscript {
repositories {
mavenCentral()
jcenter()
// jcenter {
// url "http://jcenter.bintray.com/"
// }
//这里是 LeanCloud 的包仓库
maven {
url "http://mvn.leancloud.cn/nexus/content/repositories/releases"
}
//MPAndroidChart仓库
maven { url "https://jitpack.io" }
//google
maven {
url 'https://maven.google.com'
}
}
dependencies {
classpath 'com.android.tools.build:gradle:3.0.0-alpha1'
classpath group: 'org.tmatesoft.svnkit', name: 'svnkit', version: '1.8.11'
classpath 'com.jakewharton:butterknife-gradle-plugin:7.0.1'
// https://mvnrepository.com/artifact/com.jakewharton/butterknife
// classpath group: 'com.jakewharton', name: 'butterknife', version: '7.0.1'
}
}
到gradle脚本。 在那之后,当我构建项目时,出现了这个错误:
错误:无主机路由
我使用VPN并连接到google.com。
如何解决此问题
答案 0 :(得分:-1)
您应该从app/gradle
删除Google maven repo,而不是将其作为项目库gradle文件:
buildscript {
repositories {
mavenCentral()
jcenter()
maven { url 'https://maven.google.com' }
}
...