我刚刚安装了Android以及运行android开发所需的所有相关工具。不幸的是,在初始构建Gradle同步时,事件日志会打印出错误消息
错误消息(事件日志):
Gradle sync失败:插件带有id' com.android.applications'未找到。有关详细信息,请参阅IDE日志
这是当前的Project(build.gradle)My application configuration:
// 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:2.1.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
当前的Module(build.gradle)配置:
apply plugin: 'com.android.application'
android {
compileSdkVersion 24
buildToolsVersion "24.0.2"
defaultConfig {
applicationId "com.example.user.myapplication"
minSdkVersion 9
targetSdkVersion 24
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
}
}
}
dependencies {
}
答案 0 :(得分:0)
试试这个
File -> Invalidate caches / Restart
关闭Android Studio
重命名/删除用户主目录中的.gradle
文件夹
重新启动Android Studio,让它下载所需的所有Gradle内容 Gradle建立成功!
重建项目......成功!
出于好奇,我比较了旧.gradle
和新{{1}}的结构。
他们非常不同。!
答案 1 :(得分:0)
制作一个名为" settings.gradle"的文件。
将此行添加到此文件中 - > 包括':app'
将此文件复制到项目的根目录。
重新打开项目