前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >【错误记录】安卓编译错误 ( Could not find xxx.tools.build:aapt2 )

【错误记录】安卓编译错误 ( Could not find xxx.tools.build:aapt2 )

作者头像
韩曙亮
发布2023-03-29 13:08:41
6170
发布2023-03-29 13:08:41
举报
文章被收录于专栏:韩曙亮的移动开发专栏

文章目录

一、报错信息


打开了一个古老的项目 , 运行后报如下错误 ;

代码语言:javascript
复制
Execution failed for task ':app:mergeDebugResources'.
> Could not resolve all files for configuration ':app:_internal_aapt2_binary'.
   > Could not find com.android.tools.build:aapt2:4.1.0-6503028.
     Searched in the following locations:
       - https://jcenter.bintray.com/com/android/tools/build/aapt2/4.1.0-6503028/aapt2-4.1.0-6503028.pom
     If the artifact you are trying to retrieve can be found in the repository but without metadata in 'Maven POM' format, you need to adjust the 'metadataSources { ... }' of the repository declaration.
     Required by:
         project :app

Possible solution:
 - Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html
在这里插入图片描述
在这里插入图片描述

二、解决方案


在很久很久以前 , Android 项目的仓库 , 只有 jcenter 库 ;

代码语言:javascript
复制
allprojects {
    repositories {
        jcenter()
    }
}

现在需要两个仓库 : jcenter() 和 google() ;

代码语言:javascript
复制
allprojects {
    repositories {
        jcenter()
        google()
    }
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2021-05-28,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 文章目录
  • 一、报错信息
  • 二、解决方案
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档