I'm facing this problem currently. The project did't have any build problems previously. Only today when I was trying to build it gives this error.
Gradle: A problem occurred configuring project ':Project'.
Could not resolve all dependencies for configuration ':Project:classpath'. Could not download artifact 'org.ow2.asm:asm-analysis:4.0@jar' Artifact 'org.ow2.asm:asm-analysis:4.0@jar' not found.
Seems like asm-analysis:4.0
is not found in maven repo.
(Is this link correct? http://search.maven.org/#browse%7C1692005229)
Inside my build.gradle file, I've set the repository to mavenCentral()
buildscript { repositories { mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:0.5.+' } }
I am not sure how to fix this problem, any suggestion is appreciated. Thank you.