这是我第一次尝试使用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而引起的。我在Windows上将快捷方式配置为始终以管理员身份运行,但在重新安装Android Studio后,快捷方式被替换了,因此它在没有管理员权限的情况下运行。这导致了很多不透明的错误,包括这个问题中的错误。

其他回答

更新答案(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插件。

在我的情况下,我从GitHub下载项目,Gradle文件丢失了。所以我只是创建了一个新的项目与成功建立。然后复制粘贴Gradle缺失的文件。重建项目对我来说是可行的。

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

打开你的成绩档案,你可以看到:

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


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

并将类路径更改为:

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
//        classpath 'com.android.tools.build:gradle:2.1.0'
        classpath 'com.android.tools.build:gradle-experimental:0.7.0-alpha1'

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

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

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

Gradle对此非常挑剔。