Android Studio not playing well with Lombok -


i upgraded latest android studio (2.1.1) , it’s acting strange concerning lombok. have arrangement such class dog implements interface idog.

@data class dog implements idog{   private final list<string> toys; }  interface idog{   public list<string> gettoys(); } 

before upgrade 2.1.1 never had complaint, here what’s happening

  1. in ide looks normal: no red squiggly underline asking dog implement gettoys.
  2. when run code, gradle complains dog should implement gettoys.
  3. so check if lombok not there, comment out @data. squiggly underline comes.

so it’s if android studio understands lombok handling getter creation gradle not see it. has found solution this?


Comments

Popular posts from this blog

scala - 'wrong top statement declaration' when using slick in IntelliJ -

c# - DevExpress.Wpf.Grid.InfiniteGridSizeException was unhandled -

PySide and Qt Properties: Connecting signals from Python to QML -