美文网首页
android studio 升3.0之后,遇到的相关错误

android studio 升3.0之后,遇到的相关错误

作者: Chao_xyc | 来源:发表于2017-11-13 15:08 被阅读0次

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后面会移除)

 参考文档

相关文章

网友评论

      本文标题:android studio 升3.0之后,遇到的相关错误

      本文链接:https://www.haomeiwen.com/subject/byszmxtx.html