jokova
jokova

Reputation: 13

Android - Could not find com.android.tools.build:aapt2:3.2.1-4818971. Searched in the following locations:

I am having errors with my app, i just updated and got this errors, please help new to android development

Upvotes: 1

Views: 1949

Answers (1)

navylover
navylover

Reputation: 13629

In your project build.gradle file:

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

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

Upvotes: 2

Related Questions