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

当前回答

这只是发生在我使用Android Studio 1.3.2,然而,因为我刚刚创建了项目,我删除了它,并重新创建它。 它似乎没有被Android Studio第一次正确创建,甚至没有像预期的项目文件夹。

其他回答

还是有错误

 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"
    }
}

这个问题发生在我不小心重命名行的时候

apply plugin: 'com.android.application'

在文件app/build上。Gradle到其他名字。所以,我把它改回原来的样子。

作为将来的参考:对我来说,这个问题完全是由于我没有作为管理员运行Android Studio而引起的。我在Windows上将快捷方式配置为始终以管理员身份运行,但在重新安装Android Studio后,快捷方式被替换了,因此它在没有管理员权限的情况下运行。这导致了很多不透明的错误,包括这个问题中的错误。

只要确保在创建应用程序时正确地设置了http和https代理

这也可能发生时,您有两个设置。Gradle和settings.gradle.kts文件在项目根目录中(可能包含相同的模块)。您应该只有其中一个文件。