Gradle version 1.8 is required. Current version is 1.6

后端 未结 11 994
面向向阳花
面向向阳花 2020-12-09 02:37

There is a new Android Studio update: https://sites.google.com/a/android.com/tools/recent/androidstudio030released

The link says:

The improved per

11条回答
  •  既然无缘
    2020-12-09 03:00

    You should use the following in your build.gradle:

    buildscript {
      repositories {
          mavenCentral()
      }
      dependencies {
          classpath 'com.android.tools.build:gradle:0.7.+'
      }
    }
    

    Edit: Nowadays 0.9.+ is the most up-to-date gradle plugin.

提交回复
热议问题