书到用时方恨少,事非经过不知难。这篇文章主要讲述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. 2Searched in the following locations: 3file:/F:/studio/studio2.0/gradle/m2repository/com/android/tools/build/gradle/2.8/gradle-2.8.pom 4file:/F:/studio/studio2.0/gradle/m2repository/com/android/tools/build/gradle/2.8/gradle-2.8.jar 5https://jcenter.bintray.com/com/android/tools/build/gradle/2.8/gradle-2.8.pom 6https://jcenter.bintray.com/com/android/tools/build/gradle/2.8/gradle-2.8.jar 7Required by: 8:TestApk:unspecified 9Consult IDE log for more details (Help | Show Log)
解决方法:1.在bulid.gradle(project)文件的相应地方中添加google(),如下图(一共要在两个地方加):
1 buildscript { 2repositories { 3//添加 4google() 5jcenter() 6} 7dependencies { 8classpath \'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 { 16repositories { 17//添加 18google() 19jcenter() 20} 21 } 22 23 task clean(type: Delete) { 24delete rootProject.buildDir 25 }
2.重新编译
参考博文:https://www.cnblogs.com/xiaoxiaoyibu/p/8830826.html【AS中加载gradle时出现Gradle sync failed: Could not find com.android.tools.build:gradle.的错误】
推荐阅读
- android studio的Gradle一直在sync的办法
- 关于 android.view.WindowLeaked: 窗体泄露
- 获取SpringMVC中所有RequestMapping映射URL信息
- FCC---CSS Flexbox: Apply the flex-direction Property to Create Rows in the Tweet Embed
- FCC---CSS Flexbox: Apply the flex-direction Property to Create a Column in the Tweet Embed
- 高德APP全链路源码依赖分析工程
- 利用ApplicationListener和ContextRefreshedEvent加载自己的beanPool
- 第二版高仿Android网易云音乐企业级项目实战课程介绍
- Python构造函数使用详解