我正在尝试将gradle从1.3.1更新到3.5,因为我的一些依赖项需要3.3或更高版本。
我见过类似的问题,但都没有帮助。
build.gradle:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5'
}
}
gradle-wrapper.properties:
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-3.5-all.zip
但是,当我尝试做任何事情(构建、清理等)时,我还是得到了这样的结果:
Building and installing the app on the device (cd android && ./gradlew installDebug...
FAILURE: Build failed with an exception.
* What went wrong:
A problem occurred configuring root project 'chat'.
> Could not resolve all dependencies for configuration ':classpath'.
> Could not find com.android.tools.build:gradle:3.5.
Searched in the following locations:
https://jcenter.bintray.com/com/android/tools/build/gradle/3.5/gradle-3.5.pom
https://jcenter.bintray.com/com/android/tools/build/gradle/3.5/gradle-3.5.jar
Required by:
project :
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
BUILD FAILED
试试这个
** If you are using android studio 3.5 and your build.gradle(Project
level) is=> classpath 'com.android.tools.build:gradle:3.5.1' or =>
classpath 'com.android.tools.build:gradle:3.5.1'.
than replace with ***
classpath 'com.android.tools.build:gradle:3.3.2' to
classpath 'com.android.tools.build:gradle:3.5.0'
OR
classpath 'com.android.tools.build:gradle:3.5.1'
Gradle版本的Android插件和正在使用的Gradle版本之间存在差异。插件版本通常与您使用的Android Studio的版本号相匹配。有关更多信息,请参阅文档。因此,如果使用最新的稳定的Android Studio,它目前应该是com.Android.tools.build:gradle:2.3.1。
这些值也可以从Android Studio中的项目结构窗口中查看和设置。
buildscript {
repositories {
jcenter()
google() //HAVE YOU MISS IT?
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.0'
}
}
allprojects {
repositories {
jcenter()
google() //HAVE YOU MISS IT?
}
}
找不到com.android.tools.build:Gradle:4.0.0. https://jcenter.bintray.com/com/android/tools/build/gradle/4.0.0/gradle-4.0.0.pom
null Build.Gradle(项目): 我刚刚从android Studio2.3.3迁移到4.0.1。 我的问题是什么????如果你需要更多信息就告诉我。 感谢您的回答:)
我正在构建一个react原生应用程序,并使用库。 在我的Android/build.gradle中,我在buildScript中有以下内容: 这是否意味着我必须降级我的gradle版本?
在我的设置中,我在默认设置和手动设置路径之间切换。我还尝试将和添加到存储库中 我只是蚂蚁建设和运行我的应用程序,但它说不!哈哈救命