gpt4 book ai didi

Android Studio 错误 : (8, 0) 找不到 id 为 'android' 的插件

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:51:52 26 4
gpt4 key购买 nike

我已经使用 Brew (brew install gradle) 在 OS X (10.9.3) 和 Gradle 1.1 上安装了 Android Studio (0.6.1)。但是,我无法获得我的第一个 Hello World!项目...请帮我解决这个问题

build.gradle:

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

apply plugin: 'android'

repositories {
mavenCentral()
}

android {
compileSdkVersion 19
buildToolsVersion '19.1'
defaultConfig {}
productFlavors {}
}

dependencies {
}

错误信息:

Error:(8, 0) Plugin with id 'android' not found.

Getting Build failed with an Exception Android Studio 0.4.3 and 0.4.4发布和Android Studio: Plugin with id 'android-library' not found帖子没有解决问题...

Second post I linked返回此错误消息:

Error:The project is using an unsupported version of Gradle. Please use version 1.10. Please point to a supported Gradle version in the project's Gradle settings or in the project's Gradle wrapper (if applicable.) Fix Gradle wrapper and re-import project Gradle settings

最佳答案

您似乎错过了在 dependencies block 中添加 android gradle 插件依赖项。

以此替换顶部的 buildScript 部分并将您的项目与 gradle 同步

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

apply plugin: 'android'

android {
compileSdkVersion 19
buildToolsVersion '19.1.0'
defaultConfig {
applicationId 'YOUR_APP_PACKAGE'
minSdkVersion 9
targetSdkVersion 17
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
productFlavors { }
}

dependencies {

}

关于Android Studio 错误 : (8, 0) 找不到 id 为 'android' 的插件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24298896/

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