android build gradle错误(android 3.1.3)

时间:2018-06-21 02:14:04

标签: android gradle build configure

我重新安装了android studio,此后在构建gradle时出现错误。 我做了所有有助于构建gradle的更改,但同时也显示为“配置构建”错误。 请帮助我,以便我可以开始进行android编程。

版本版本-4.4 android插件版本-3.1.3`

我已将google()更改为maven(),但没有任何反应。

//build.gradle file
// Top-level build file where you can add configuration options common to all 
sub-projects/modules.

buildscript {


repositories {
    google()
  jcenter { url 'http://jcenter.bintray.com' }
}
dependencies {
    classpath 'com.android.tools.build:gradle:3.1.3'


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

allprojects {
    repositories {
    google()
   jcenter()
}
}

task clean(type: Delete) {
delete rootProject.buildDir

}

0 个答案:

没有答案