当我在android studio中创建一个新项目时,起初每件事都是o.k并且它在我的手机上运行。但是,如果我按下同步按钮,则会出现一个可怕的错误(我害怕并且讨厌它):“没有找到带有'com.android.application'的插件”。我搜索并阅读与此错误相关的所有答案并完成所有事情。但我的问题仍然存在。 这是我的build.gradle(module.app):
apply plugin: 'com.android.application'
android {
compileSdkVersion 27
defaultConfig {
applicationId "com.example.masood.pietest"
minSdkVersion 16
targetSdkVersion 27
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
}
这是我的build.gradle(项目):
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.1.0-alpha09'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
真的,我不知道我需要做什么...... 有谁可以帮助我?
答案 0 :(得分:3)
在尝试解决上述问题并搜索和检查解决方案3天后,我发现问题来自于我的“Android插件”版本。因此,如果每个人都出现这个问题,特别是那些刚刚接触到android studio的人,那么请尝试使用适当版本的“Android插件”,并使用“Gradle版本”进行调整。要做到这一点,只需查看此地址即可:https://developer.android.com/studio/releases/gradle-plugin.html#updating-plugin和https://developer.android.com/studio/releases/gradle-plugin.html#updating-gradle。 例如,我的Gradle版本是“gradle-4.4”,至少需要插件版本“gradle:3.1.0”。我的插件版本(当我遇到上述问题时是gradle:3.1.0-alpha09)并且同步过程遇到错误。所以我将其更改为:“gradle:3.1.0”,现在效果非常好。
注意:要查看“gradle版本”,请转到应用程序的以下目录:
Gradle Scripts - > gradle-wrapper.properties
和“插件版本”转到:Gradle Scripts - > build.gradle(Project:...)(NOT:build.gradle(app:...))
我希望这个答案对每个遇到同样问题的人都有用。