欢迎来到代码驿站!

Android代码

当前位置:首页 > 移动开发 > Android代码

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

时间:2022-08-01 10:48:08|栏目:Android代码|点击:

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 ?Cstacktrace option to get the stack trace. Run with ?Cdebug 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()
        .....
    }
}

上一篇:Android实现H5与Native交互的两种方式

栏    目:Android代码

下一篇:Android在Sqlite3中的应用及多线程使用数据库的建议(实例代码)

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

本文地址:http://www.codeinn.net/misctech/209548.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有