程序员最近都爱上了这个网站  程序员们快来瞅瞅吧!  it98k网:it98k.com

本站消息

站长简介/公众号

  出租广告位,需要合作请联系站长

+关注
已关注

分类  

暂无分类

标签  

暂无标签

日期归档  

2023-06(1)

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

发布于2021-05-30 20:43     阅读(1842)     评论(0)     点赞(2)     收藏(2)






一、报错信息



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

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 库 ;

allprojects {
    repositories {
        jcenter()
    }
}

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

allprojects {
    repositories {
        jcenter()
        google()
    }
}

原文链接:https://blog.csdn.net/han1202012/article/details/117370203



所属网站分类: 技术文章 > 博客

作者:模糊不清牛肉面

链接:http://www.phpheidong.com/blog/article/86923/020441645fc10ab84759/

来源:php黑洞网

任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任

2 0
收藏该文
已收藏

评论内容:(最多支持255个字符)