android-apt plugin is incompatible with the Android Gradle plugin. Please use 'annotationProcessor'

android-apt plugin is incompatible with the Android Gradle plugin. Please use ‘annotationProcessor’

分三步走

1.progect中类似于
   classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
 这句话的 注释掉
 2.app.gradle中:
 //apply plugin: 'android-apt'
 类似于这句话的注释掉
 3.app.gradle中: dependencies中
     apt 'com.jakewharton:butterknife-compiler:8.4.0'
     类似于这句话的 ,把apt 换成annotationProcessor
这个问题可以解决了   
         

Could not find com.android.tools.build:aapt2:3.3.1-5013011.

这个问题的解决方法:
在project的gradle中找到
buildscript {
    repositories {
        mavenCentral()
        google()
    }
    dependencies {
     //  classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
    }
}
注意google(),如果没有需要加上 应该就可以解决了

你可能感兴趣的:(android)