错误:(41, 0) 提供的字符串模块表示法'0.12.2'无效



我正在将Eclipse项目导入Android工作室,并在导入项目时出现以下错误:

Error:(41, 0) Supplied String module notation '0.12.2' is invalid. Example notations: 'org.gradle:gradle-core:2.2', 'org.mockito:mockito-core:1.9.5:javadoc'.
Open File

这是我的build.gradle文件:

apply plugin: 'android'
dependencies {
    compile fileTree(dir: 'libs', include: '*.jar')
    compile project(':appcompat')
    compile project(':cardview')
}
android {
    compileSdkVersion 21
    buildToolsVersion '21.1.0'
    sourceSets {
        main {
            manifest.srcFile 'AndroidManifest.xml'
            java.srcDirs = ['src']
            resources.srcDirs = ['src']
        }
        debug.setRoot('build-types/debug')
        release.setRoot('build-types/release')
    }
}
buildscript {
    dependencies {
        classpath '0.12.2'
    }
    repositories {
        mavenCentral()
    }
}
allprojects {
    repositories {
        mavenCentral()
    }
}

我在以下行收到错误:

classpath '0.12.2'

你的脚本似乎很旧。

您应该将行classpath '0.12.2'更改为:

classpath 'com.android.tools.build:gradle:0.12.2'

我希望这个脚本应该有一些其他问题。

  • 将您的 Android Studio 更新到最新的稳定版本 (2.1)
  • 使用apply plugin: 'com.android.application'
  • 使用classpath 'com.android.tools.build:gradle:2.1.0'
  • 使用 distributionUrl = https://services.gradle.org/distributions/gradle-2.10-all.zip 更新 gradle 版本 ( gradle/wrapper/gradle-wrapper.properties

最新更新