这是我第一次尝试使用Android Studio。我安装了0.8.0并更新到0.8.2。只要一个项目被创建,我就会得到错误消息:

错误:(1,0)插件id 'com.android。未找到应用程序

C:\Users\Bob\ AndroidStudioProjects \ HelloAgain6 \ app \ build.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 20
    buildToolsVersion "20.0.0"

    defaultConfig {
        applicationId "com.example.bob.helloagain6"
        minSdkVersion 15
        targetSdkVersion 20
        versionCode 1
        versionName "1.0"
    }
    buildTypes {
        release {
            runProguard false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
}

和C:\Users\Bob\ AndroidStudioProjects \ HelloAgain6 \ build.gradle

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

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

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

allprojects {
    repositories {
        jcenter()
    }
}

当前回答

我写这篇文章不是为了解决很多人的问题,而是为了解决一些人的问题,他们可能犯了一个简单的错误,比如从SVN导入项目时指定了错误的url。它是为那些家伙准备的:)

当我从SVN导入项目时发生了这种情况->自动提示Studio打开项目->它要求Gradle位置-> D:\Software\Android\ Gradle -2.5 ->然后出现错误。

在不同的SVN分支中的同一个项目可以很好地使用Gradle插件和我在Studio中配置的Gradle。我试着改变Android Gradle插件和Gradle,让它在错误的分支上工作,但没有任何成功。

最后,我发现我犯了以下错误: 我尝试单独导入一个特定的应用程序,而不是将应用程序与依赖的库项目一起导入。 我最初用于导入的url末尾有应用程序项目的名称。一旦我删除了它,并指定了父目录,其中包含应用程序项目和它的依赖项目,一切都很顺利:)

其他回答

确保你的两个构建。Gradle和设置。Gradle文件在https://developer.android.com/studio/build/index.html的正确目录中

然后在Visual Studio中打开“as existing project”

Gradle对此非常挑剔。

更新答案(2020年12月2日)

最新的Gradle: 6.5

版本检查:

/ gradlew - v。

如何更新:

设置URL: ./gradlew包装器——gradle-version=6.5——distribution-type=all 更新:./gradlew包装器

最新的Android Gradle插件:4.1.0

如果将以下代码片段添加到构建的顶部。gradle文件。Gradle会更新构建工具。

buildscript {
    repositories {
        google() // For Gradle 4.0+
        maven { url 'https://maven.google.com' } // For Gradle < 4.0
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:4.1.0'
    }
}

更多信息请访问:https://developer.android.com/studio/build/index.html,版本兼容性请访问:https://developer.android.com/studio/releases/gradle-plugin.html#updating-gradle和https://dl.google.com/dl/android/maven2/index.html。

原来的答案

我有同样的错误,你需要确保你的Gradle版本与你的Android Gradle插件兼容。

Gradle的最新版本是2.0,但是你需要使用1.12才能使用Android的Gradle插件。

我写这篇文章不是为了解决很多人的问题,而是为了解决一些人的问题,他们可能犯了一个简单的错误,比如从SVN导入项目时指定了错误的url。它是为那些家伙准备的:)

当我从SVN导入项目时发生了这种情况->自动提示Studio打开项目->它要求Gradle位置-> D:\Software\Android\ Gradle -2.5 ->然后出现错误。

在不同的SVN分支中的同一个项目可以很好地使用Gradle插件和我在Studio中配置的Gradle。我试着改变Android Gradle插件和Gradle,让它在错误的分支上工作,但没有任何成功。

最后,我发现我犯了以下错误: 我尝试单独导入一个特定的应用程序,而不是将应用程序与依赖的库项目一起导入。 我最初用于导入的url末尾有应用程序项目的名称。一旦我删除了它,并指定了父目录,其中包含应用程序项目和它的依赖项目,一切都很顺利:)

如果您错过添加顶级构建文件,就会发生这种情况。

只需添加构建。Gradle到顶级。

应该是这样的

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.xx.y'
    }
}

allprojects {
    repositories {
        mavenCentral()
    }
}

I was using IntelliJ IDEA 13.1.5 and faced with the same problem after I changed versions of Picasso and Retrofit in dependencies in build.gradle file. I tried use many solutions, but without result. Then I cloned my project from remote git (where I pushed it before changing versions of dependencies) and it worked! After that I just closed current project and imported old project from Gradle file to IntelliJ IDEA again and it worked too! So, I think it was strange bug in intersection of IDEA, Gradle and Android plugin. I hope this information can be useful for IDEA-users or anyone else.