Android 4.0 ,gradle 4.0.0 butterknife 10.0.0版本冲突解决

项目gradle

dependencies {
        classpath "com.android.tools.build:gradle:4.0.0"
        classpath 'com.jakewharton:butterknife-gradle-plugin:10.0.0'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }

app的gradle

apply plugin: 'com.android.application'
apply plugin: 'com.jakewharton.butterknife'
android {
    compileSdkVersion 30
    buildToolsVersion 

你可能感兴趣的:(JAVA,gradle,android,studio)