这是我第一次尝试使用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()
    }
}

当前回答

在这种情况下,检查下面的代码

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

和gradle-wrapper。properties在你的项目目录检查下面distributionurl:

distributionUrl=https\://services.gradle.org/distributions/gradle-2.9-all.zip

如果它们彼此不兼容,那么你就会陷入这个问题。

com.android.tools.build: gradle: 1.5。你需要至少2.8的版本,但如果你切换到更高的版本,如com.android.tools.build:gradle:2.1.0,那么你需要将你的gradle更新到2.9,这可以通过在gradle-wrapper中更改distributionUrl来完成。属性为2.9或更高,如下所示

distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip

其他回答

其他答案对我不起作用,我猜在ButterKnife和3.0.0 alpha5之间发生了一些错误。

然而,我发现当我注释任何一个句子时,无论是BUtterKnife还是3.0.0 alpha5,它都能正常工作。

所以,你应该避免重复或冲突。

Root-gradle文件:

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

allprojects {
    repositories {
        jcenter()
    }
}

Gradle-wrapper。属性文件:

distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-x.x-all.zip

还是有错误

 Could not find com.android.tools.build:gradle:3.0.0.

问题:jcenter()没有所需的库

解决方法:添加谷歌()作为repo

buildscript {
    repositories {
        google()
        jcenter()

    }
    dependencies {

        classpath "com.android.tools.build:gradle:3.0.0"
    }
}

如果你在模块目录下运行android插件1.2.3的模块任务,就会出现这个问题。试试这个:

../gradlew -b ../build.gradle  -c ../settings.gradle  :module:xxx

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.