I am getting these errors while building the project
Apparently, jcenter has started mirroring Google's repo. Try moving google()
before jcenter()
in the allprojects
section of your project's build.gradle
(like this):
repositories {
google()
jcenter()
maven { url "https://maven.google.com" }
maven { url "https://jitpack.io" }
maven { url "https://adcolony.bintray.com/AdColony" }
maven { url "https://dl.bintray.com/ironsource-mobile/android-sdk" }
}