gpt4 book ai didi

android - 错误 :(41, 0) 提供的字符串模块符号 '0.12.2' 无效

转载 作者:太空宇宙 更新时间:2023-11-03 12:48:35 25 4
gpt4 key购买 nike

我正在将 Eclipse 项目导入到 Android Studio 中,但在导入项目时出现以下错误:

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)
  • 使用应用插件:'com.android.application'
  • 使用 classpath 'com.android.tools.build:gradle:2.1.0'
  • 使用 distributionUrl = https\://services.gradle.org/distributions/gradle-2.10-all 更新 gradle 版本 (gradle/wrapper/gradle-wrapper.properties)。 zip

关于android - 错误 :(41, 0) 提供的字符串模块符号 '0.12.2' 无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36904713/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com