Could not find com.android.tools.build:aapt2:3.2.0-4818971 Android Studio

Could not find com.android.tools.build:aapt2:3.2.0-4818971 Android Studio


Most likely you do not have the Google repository in your project's build.gradle file. Add google() in BOTH locations as shown below:

buildscript {

    repositories {
        google()
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.2.0'
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }

}
Could not find com.android.tools.build:aapt2:3.2.0-4818971 Android Studio Could not find com.android.tools.build:aapt2:3.2.0-4818971 Android Studio Reviewed by Anonymous on October 08, 2018 Rating: 5

No comments:

Java Ternary Operator

Java Ternary Operator Java ternary operator is the only conditional operator that takes three operands. Java ternary operator is a one l...

Powered by Blogger.