即使在首次运行时,Gradle也无法同步

WiG*_*eky 6 android android-studio build.gradle

我在Windows 10上安装了Android Studio最新版本.(我已经用另一个版本和另一个Windows 10做了)它可以用android SDK但是当它想要加载一个项目时它说:

错误:(23,17)无法解决:junit:junit:4.12

这是日志:

JsonSyntaxException:在读取distributions时解析异常.json:java.lang.IllegalStateException:预期为BEGIN_ARRAY但在第1行第1行为STRING路径$

gradle.build文件:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 23
    buildToolsVersion "23.0.3"

    defaultConfig {
        applicationId "com.example.mohammad.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(dir: 'libs', include: ['*.jar'])
    testCompile 'junit:junit:4.12'
    compile 'com.android.support:appcompat-v7:23.3.0'
}
Run Code Online (Sandbox Code Playgroud)

Mru*_*ker 3

添加以下行

android {
 ...
 ...
repositories {
    maven { url 'http://repo1.maven.org/maven2' }
}
...
...
}
Run Code Online (Sandbox Code Playgroud)