Android What is the difference between neenbedankt AP and support annotation?

I recently replaced the annotation processing neenbedanktlibrary with the google library Support-Annotationand changed all the methods aptin build.gradleto annotationProcessor, and everything works fine. My question is, what is the difference between them and when should we use each of them?

+4
source share
1 answer

There is no difference. annotationProcessor- new gradle plugin feature.

Additional information from the creator android-apt here

, annotationProcessor , android-apt, android-apt . annotationProcessor

+3

Source: https://habr.com/ru/post/1657956/


All Articles