Android Stuido Gradle Sync failed - Could not get resource 'https:// … /gradle-3.2.0.pom'

前端 未结 2 1531
梦谈多话
梦谈多话 2021-01-21 03:25

i want to start android programming. after i install android studio 3.2 and create new project i get this exception:

org.gradle.api.resources.ResourceException:          


        
2条回答
  •  臣服心动
    2021-01-21 03:51

    in build.gradle file I added a maven entry like so:

    allprojects {
        repositories {
            google()
            jcenter()
            maven {
                url 'https://maven.google.com/'
                name 'Google'
            }
        }
    }
    

提交回复
热议问题