zoukankan      html  css  js  c++  java
  • AS中加载gradle时出现Gradle sync failed: Could not find com.android.tools.build:gradle.的错误

    时间:2019/12/7

    这次接着整理加载gradle时出现的错误

    出现的错误:

    1 Gradle sync failed: Could not find com.android.tools.build:gradle:3.5.0.  
    2          Searched in the following locations:  
    3          file:/F:/studio/studio2.0/gradle/m2repository/com/android/tools/build/gradle/2.8/gradle-2.8.pom  
    4          file:/F:/studio/studio2.0/gradle/m2repository/com/android/tools/build/gradle/2.8/gradle-2.8.jar  
    5          https://jcenter.bintray.com/com/android/tools/build/gradle/2.8/gradle-2.8.pom  
    6          https://jcenter.bintray.com/com/android/tools/build/gradle/2.8/gradle-2.8.jar  
    7          Required by:  
    8          :TestApk:unspecified  
    9          Consult IDE log for more details (Help | Show Log)

    解决方法:

    1.在bulid.gradle(project)文件的相应地方中添加google(),如下图(一共要在两个地方加):

     1 buildscript {
     2     repositories {
     3         //添加
     4         google()
     5         jcenter()
     6     }
     7     dependencies {
     8         classpath 'com.android.tools.build:gradle:3.1.1'
     9 
    10         // NOTE: Do not place your application dependencies here; they belong
    11         // in the individual module build.gradle files
    12     }
    13 }
    14 
    15 allprojects {
    16     repositories {
    17      //添加
    18         google()
    19         jcenter()
    20     }
    21 }
    22 
    23 task clean(type: Delete) {
    24     delete rootProject.buildDir
    25 }

    2.重新编译

    参考博文:https://www.cnblogs.com/xiaoxiaoyibu/p/8830826.html

  • 相关阅读:
    WSGI,uwsgi,uWSGI
    彻底关闭win10自动更新
    利用python实现单向链表
    Maven的工程类型有哪些
    Maven仓库是什么
    什么是Maven
    Shiro 的优点
    比较 SpringSecurity 和 Shiro
    shiro有哪些组件
    接口绑定有几种实现方式,分别是怎么实现的
  • 原文地址:https://www.cnblogs.com/machi12/p/12003988.html
Copyright © 2011-2022 走看看