首页 > 解决方案 > Android - 找不到 com.android.tools.build:aapt2:3.2.1-4818971。在以下位置搜索:

问题描述

我的应用程序出现错误,我刚刚更新并收到此错误,请帮助新的 android 开发

标签: javaandroidandroid-gradle-plugin

解决方案


在您的项目build.gradle 文件中:

buildscript {
    repositories {
        google() // add this
        jcenter()
    }
 }

allprojects {
    repositories {
        google() // add this
        jcenter()
    }
}

推荐阅读