Android studio - gradle无法解析依赖项

M.A*_*ali 5 proxy android android-studio android-gradle-plugin android-studio-2.1

我在我的系统中安装了Android Studio版本2.1.2,如果我在Gradle文件中添加任何依赖项,那么I get failed to resolve error.

It happen the all the libraries likes Picasso not only for Junit
Run Code Online (Sandbox Code Playgroud)

所以我尝试在gradle.properties文件中添加代理设置

systemProp.http.proxyHost=http://xxxx/xxx
systemProp.http.proxyPort=80
systemProp.https.proxyHost=http://xxxx/xxx
systemProp.https.proxyPort=80
Run Code Online (Sandbox Code Playgroud)

但是我收到以下错误:

Error:A problem occurred configuring project ':app'.
> Could not resolve all dependencies for configuration ':app:_debugCompile'.
   > Could not resolve junit:junit:4.12.
     Required by:
         MyApplication2:app:unspecified
      > Could not resolve junit:junit:4.12.
         > Could not get resource 'https://jcenter.bintray.com/junit/junit/4.12/junit-4.12.pom'.
            > Could not GET 'https://jcenter.bintray.com/junit/junit/4.12/junit-4.12.pom'.
               > http://xxxx/xxx
Run Code Online (Sandbox Code Playgroud)

如何解决这个问题,请帮忙.

build.gradle文件:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "24.0.0"

    defaultConfig {
        applicationId "com.example.muraliathmarao.myapplication"
        minSdkVersion 15
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    compile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.4.0'
}
Run Code Online (Sandbox Code Playgroud)

Nik*_* PV 4

您需要在主 build.gradle 的末尾添加一个 allprojects 部分,用于定义项目模块的存储库:

allprojects {
repositories {
    jcenter()
  }
}
Run Code Online (Sandbox Code Playgroud)

这是 build.gradle (项目)

buildscript {
 repositories {
    jcenter()
    mavenCentral()
  }

  dependencies {
        classpath 'com.android.tools.build:gradle:2.1.0'
       // NOTE: Do not place your application dependencies here; they belong
       // in the individual module build.gradle files
   }
 }

allprojects {
    repositories {
       jcenter()
       mavenCentral()
 } 
}
Run Code Online (Sandbox Code Playgroud)