解决新版Android Studio 报错问题(网络问题)

解决新版Android Studio 报错问题(网络问题)_第1张图片

buildscript {
    
    repositories {
        jcenter()
        google()
        maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'}
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.2.1'
        classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
        maven{ url 'http://maven.aliyun.com/nexus/content/groups/public/'}
        maven { url "https://jitpack.io" }
        google()
    }
}

对了 关键一点

解决新版Android Studio 报错问题(网络问题)_第2张图片

你可能感兴趣的:(解决新版Android Studio 报错问题(网络问题))