You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Lombok plugin is no longer compatible with Android Studio. Code will still build when adding it as a compileOnly, but when editing files lots of errors will appear now, making your editor mostly red over white background.
Lombok purpose, as long as I could see, is to 'save developer time', as it adds getters and setters to designated private fields.
If those setters and getters were added as lines of code on files:
It would be easier to debug errors as breakpoints could be set where needed instead of having to use logd's
Any code reader could know what is really happening on the app, instead of having to research what is Lombok
Installing a plugin is no longer required, saving this time of errors
The text was updated successfully, but these errors were encountered:
Lombok plugin is no longer compatible with Android Studio. Code will still build when adding it as a compileOnly, but when editing files lots of errors will appear now, making your editor mostly red over white background.
Lombok purpose, as long as I could see, is to 'save developer time', as it adds getters and setters to designated private fields.
If those setters and getters were added as lines of code on files:
The text was updated successfully, but these errors were encountered: