droidcon NYC 2017 - Clean app design with Architecture Components

Поделиться
HTML-код
  • Опубликовано: 2 дек 2024

Комментарии • 7

  • @igorg.8624
    @igorg.8624 6 лет назад

    The pics at the beginning of this video really help to nail the point across: "Clean Architecture has many layers that need careful coordination and knowledge."

  • @codinginflow
    @codinginflow 6 лет назад +1

    Great and clear explanation

  • @cgtnet
    @cgtnet 6 лет назад

    A skillful combination of theory and practice. Thanks!

  • @pdp8a
    @pdp8a 6 лет назад

    Excellent presentation. Nicely done sir.

  • @0877adri
    @0877adri 5 лет назад

    Would love to work with this guys, seems like a super nice dude

  • @sperformance.96
    @sperformance.96 6 лет назад +1

    MVVM has changed since the date of this video. I prefer MVVM over MVP. So much simple,no interfaces hell, reactive and the most important thing: it doesn't hold a view reference.
    So if you do async tasks and when it finishes then call getView().loadResults() this might crash your app if the user already leaved the activity or fragment.
    Ofc this can be handled with an if != null condition but it is so ugly and boilerplate...
    What do you think?

    • @ramirodeelias4516
      @ramirodeelias4516 6 лет назад

      No the app will not crash in that case you mentioned because when the activity gets destroyed the liveData does not "post" updates, it only does it when your activity is visible