gpt4 book ai didi

android - 找不到参数的方法 maven() [build_48jju0eu9q7aafln0yi713a7l$_run_closure1$_closure4@3cb5a1fe]

转载 作者:行者123 更新时间:2023-11-30 05:02:42 25 4
gpt4 key购买 nike

My build.gradle

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.0'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}

allprojects {
repositories {
jcenter()
}
maven {
url "https://maven.google.com"

}
}

task clean(type: Delete) {
delete rootProject.buildDir
}

**我的错误代码是

Could not find method maven() for arguments [build_48jju0eu9q7aafln0yi713a7l$_run_closure1$_closure4@3cb5a1fe] on root project 'androidtest2' of type org.gradle.api.Project.**

https://github.com/ujink/Android-HC06-Arduino

这个程序

最佳答案

maven block 移动到 repositories block 中:

allprojects {
repositories {
jcenter()
maven {
url "https://maven.google.com"
}
}
}

关于android - 找不到参数的方法 maven() [build_48jju0eu9q7aafln0yi713a7l$_run_closure1$_closure4@3cb5a1fe],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57956642/

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