A problem occurred configuring root project ‘android‘.> Could not resolve all artifacts for configu

1.Exception description android studio build error prompts that the plug-in in dependencies cannot be loaded

A problem occurred configuring root project 'android'.
> Could not resolve all artifacts for configuration ':classpath'.
   > Could not resolve commons-io:commons-io:2.6.
     Required by:
         project :
      > Could not resolve commons-io:commons-io:2.6.

 Problem Solved: Add the following warehouse address to the repositories warehouse in the buildscript

repositories {
        google()
        jcenter()
        mavenCentral()
        maven { url "https://jitpack.io" }
    }

Guess you like

Origin blog.csdn.net/chengzhenjia/article/details/130849743