最佳答案
我尝试用 Android Studio 2.2运行我的项目,但是我得到了这个错误
Unsupported method: AndroidProject.getPluginGeneration().
The version of Gradle you connect to does not support that method.
我正在使用 ButterKnife 8.4.0
我的应用程序 gradle.file:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.2.0'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
}
}
我的模块级别文件:
apply plugin: 'com.android.application'
apply plugin: 'android-apt'
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
defaultConfig {
applicationId "xxx.xx"
minSdkVersion 10
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
}
dependencies {
compile 'com.jakewharton:butterknife:8.4.0'
apt 'com.jakewharton:butterknife-compiler:8.4.0'
}
为什么它不工作,我如何解决它?