从今天早上开始,我在Android Studio上的android项目中遇到了一个奇怪的问题。 Gradle同步非常慢。我搜索并发现它是由于github存储库。
我设法用这个build.gradle
在一个新的android工作室项目上重现这个bug // Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.9.+'
}
}
allprojects {
repositories {
maven { url 'https://raw.githubusercontent.com/bbbenja/mvn-repo/master/' }
mavenCentral()
}
}
Github改变原始文件的策略?有人有同样的问题吗?
THX
答案 0 :(得分:0)
我刚遇到同样的问题 - 我们整个Android项目都无法构建,因为我们依赖于Github托管的mvn存储库。
这似乎与Github有关。看起来他们的原始"主持人没有工作。
这是我的临时解决方法:
1)Git克隆本地回购
2)在本地使用MAMP或其他网络服务器,将其指向您下载mvn-repo文件夹的位置
3)在您的构建文件中,根据您的Web服务器将其设置为localhost ...
例如,这就是我们的build.gradle现在的样子:
repositories {
// this maven repo is a source for the compile dependencies
//maven { url 'https://github.com/Goddchen/mvn-repo/raw/master/'}
//temporary workaround
maven { url 'http://localhost:8888/' }
mavenLocal()
mavenCentral()
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
flatDir name: 'libs', dirs: "libs"
}
答案 1 :(得分:0)
无需在本地克隆git repo,您所要做的就是通过遵循本机Gradle支持来过滤存储库提取
与依赖项匹配的存储库
现在可以将存储库与依赖项进行匹配,这样,如果在存储库中永远都找不到依赖项,那么Gradle就不会在存储库中搜索依赖项。
示例:
repositories {
maven {
url "https://repo.mycompany.com"
content {
includeGroupByRegex "com\\.mycompany.*"
}
}
}
以供进一步参考Gradle 5.1.1