返回顶部
首页 > 资讯 > 移动开发 >解决Could not find com.android.tools.build:gradle:3.0.0
  • 759
分享到

解决Could not find com.android.tools.build:gradle:3.0.0

2024-04-02 19:04:59 759人浏览 泡泡鱼
摘要

Android studio升级3.0,gradle升级4.1以后项目报错,如下 Could not resolve all files for configuration ‘:

Android studio升级3.0,gradle升级4.1以后项目报错,如下

Could not resolve all files for configuration ‘:classpath'.
Could not find com.android.tools.build:gradle:3.0.0.
Searched in the following locations:
https://jcenter.bintray.com/com/android/tools/build/gradle/3.0.0/gradle-3.0.0.pom
Https://jcenter.bintray.com/com/android/tools/build/gradle/3.0.0/gradle-3.0.0.jar
Required by:
project :* Try:
Run with –stacktrace option to get the stack trace. Run with –debug option to get more log output.

解决方法:在project的builde.gradle做如下操作分别加上Google()


buildscript {

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


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

allprojects {
    repositories {
        google()
        .....
    }
}

到此这篇关于解决Could not find com.android.tools.build:gradle:3.0.0的文章就介绍到这了,更多相关Could not find gradle:3.0.0内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!

--结束END--

本文标题: 解决Could not find com.android.tools.build:gradle:3.0.0

本文链接: https://lsjlt.com/news/133020.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作