本文介绍了Android Studio警告:使用不兼容的插件进行注释处理的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

将Android Studio更新到2.3版本后,我发出警告:

After update Android Studio to 2.3 version I have warning:

有解决方案吗?我的应用程式停止运作...

Any solutions? My app stopped working...

推荐答案

您的应用程序级别gradle依赖项应包括(按照butterknife网站上的说明):

Your app level gradle dependencies should include (as per butterknife website instructions):

compile 'com.jakewharton:butterknife:8.8.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'

您可以删除以下行:

apply plugin: 'com.neenbedankt.android-apt'

注释处理在Android Gradle插件(2.2及更高版本)中可用,因此,如果使用此版本的gradle或更高版本,则现在不再需要使用上述插件.

Annotation Processing became available in Android Gradle plugin (2.2 and later) so there is now no need to use the above plugin anymore if using this version of gradle or greater.

如果您想知道如何打开和关闭注释处理,并且设置为:

If you'd like to know how to turn annotation processing off and on and AS the setting is in :

设置>构建,执行,部署>编译器>注释处理器

这篇关于Android Studio警告:使用不兼容的插件进行注释处理的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-18 17:13