构建项目时出现此错误:
错误:重复类:class_name$$ViewInjector
这是我的 build.gradle 文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 19
buildToolsVersion "19.1.0"
defaultConfig {
applicationId "com.stel.order"
minSdkVersion 9
targetSdkVersion 19
}
buildTypes {
release {
runProguard true
proguardFiles 'proguard-project.txt'
}
}
}
dependencies {
compile 'com.google.code.gson:gson:2.2.4'
compile 'com.jakewharton:butterknife:6.0.0'
...
}
如果我清理项目,它会构建没有错误,但是当我运行项目时,我会收到此错误。