Build errors after Android Studio 3.2.1 upgrade

For Android Studio 3.2.1 update

Just add google() in root level build.gradle

buildscript {
    repositories {
        google()   //  <--here
        jcenter()
    }
 }

allprojects {
    repositories {
        google()   //  <-- here
        jcenter()
    }
}

and see the magic – error is gone.

Leave a Comment