1、Error:android-apt plugin is incompatible with the Android Gradle plugin. Please use 'annotationProcessor' configuration instead.
gradle升级之后报错,插件不兼容了。
删除project根目录的 classpath'com.neenbedankt.gradle.plugins:android-apt:*'
删除module根目录的 applyplugin:'com.neenbedankt.android-apt'
把module根目录 dependencies 的 apt 换成 annotationProcessor
2、创建一demo,建立Library引用,但是主程序调用不到Library,查看Libray发现依赖包是用implementation修饰的,不是原来的compile,查资料,implementation 修饰的依赖只能当前module可以使用,不可以传递,修改为compile或者api即可(建议api , compile后面会移除)
网友评论