我有以下脚本,当我尝试从终端运行gradle时,我收到错误 “无法创建'AppPlugin'类型的插件。”
这是应用程序 https://github.com/Estimote/Android-SDK/tree/master/DistanceDemo
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.6.+'
}
}
apply plugin: 'android'
repositories {
mavenCentral()
}
android {
compileSdkVersion 19
buildToolsVersion "19.0.0"
defaultConfig {
minSdkVersion 18
targetSdkVersion 18
}
}
dependencies {
compile files('../EstimoteSDK/estimote-sdk-preview.jar', '../EstimoteSDK/guava-15.0.jar')
}
答案 0 :(得分:1)
0.6。*插件需要Gradle 1.8 0.7。*插件需要Gradle 1.9
确保使用正确的版本。
答案 1 :(得分:1)
应使用Gradle Wrapper调用此演示https://github.com/Estimote/Android-SDK/tree/master/Demos。有一个脚本./gradlew应该用于使用正确的Gradle版本。