After upgrading from 2.2 to 2.3 I see this warning
and when I try to compile the project I see this compilation error
How can i solve this issue without downgrading to a previous gradle version? Is there any update of android-apt that can solve this issue?
The
android-apt
plugin has been deprecated.Check here for the migration guide:
You can remove
android-apt
by following the migration guide to get the equivalent functionalities.The important parts from the migration guide:
Also in the Android Gradle plugin there is an explicit check for this, which is what you are seeing:
Future Android Gradle plugin versions will not be compatible with the way
android-apt
works, which is the reason for that check.