gpt4 book ai didi

android - 构建被配置为首选设置存储库而不是项目存储库,但存储库 'maven' 是由构建文件 'build.gradle' 添加的

转载 作者:行者123 更新时间:2023-12-04 23:35:35 25 4
gpt4 key购买 nike

我想将 jitpack.io 添加为我的 gradle 文件中的存储库。
这是我的 gradle 根文件:

buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:7.0.2"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.21"

classpath 'com.google.dagger:hilt-android-gradle-plugin:2.38.1'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
由于我没有“allrepositories”来将我的依赖项放在那里(只在那里工作),所以我在 buildscript 代码之后创建并添加了这个代码:
allprojects {
repositories {
maven {url 'https://www.jitpack.io'}
}
}
但这是我得到的错误
Caused by: org.gradle.api.InvalidUserCodeException: Build was configured to prefer settings repositories over project repositories but repository 'maven' was added by build file 'build.gradle'

最佳答案

Gradle 6.8 引入 central declaration of repositories , 定义存储库的新方法。最新文档 (7.4.2) can be found here .
删除 dependencyResolutionManagement来自 setting.gradle 的 block 文件以使您的项目以旧方式工作。

关于android - 构建被配置为首选设置存储库而不是项目存储库,但存储库 'maven' 是由构建文件 'build.gradle' 添加的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69163511/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com