我正在尝试使用gradle创建一个简单的android项目。我在使用Debian GNU / Linux 7'wheezy'的计算机上工作。
我遵循了Gradle插件用户指南-Android Tools Project网站中的建议,但会引发错误:
FAILURE: Build failed with an exception.
* Where:
Build file '/home/alex/Proyectos/MyLogin/build.gradle' line: 11
* What went wrong:
A problem occurred evaluating root project 'MyLogin'.
> Could not create plugin of type 'AppPlugin'.
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
BUILD FAILED
Total time: 4.817 secs
我遵循了规范:
- 摇篮1.9
- 插件0.7
- SDK 17+(实际上是19)
我还重新开始了一个项目,显示的结果由gradle tasks
文档中所示的命令发出。
我也尝试过gradle 1.10,但是结果是一样的。
甚至这个问题也没有用,因为它通过“升级”解决了gradle 1.6(我知道插件0.7至少需要gradle 1.9)。
我在android-studio和IntelliJ Idea中出现相同的错误失败后尝试了此操作。
编辑:我也在两个IDE中尝试了新项目,并遇到了相同的问题。但是令我最惊讶的是,两个IDE都以打包形式使用gradle 1.8。我试图将它们都配置为使用本地gradle安装,但是仍然是同一问题。
我究竟做错了什么?是虫子吗?如何避免该问题?
请帮我。
编辑:这是我的build.gradle
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.7.+'
}
}
apply plugin: 'android'
repositories {
mavenCentral()
}
android {
compileSdkVersion 14
buildToolsVersion '19.0.1'
defaultConfig {
minSdkVersion 14
targetSdkVersion 19
}
}
sourceCompatibility = 1.6
version = '0.1'
dependencies {
compile 'com.android.support:support-v4:18.0.0'
//compile project(':core')
}