By layer or feature? Why not both?! Guide to Android app modularization

Sdílet
Vložit
  • čas přidán 23. 10. 2022
  • In this talk, we will give you a set of common patterns and recipes for modularizing your project in the context of the modern Android app architecture. Learn the types of modules and their role in a multi-module codebase.
    Resources:
    Guide to Android app modularization → goo.gle/3NM5KLr
    Speaker: Miłosz Moczkowski
    Watch more:
    Watch all the Android Dev Summit sessions → goo.gle/ADS-All
    Watch all the Modern Android Development track sessions → goo.gle/ADS-MAD
    Subscribe to Android Developers → goo.gle/AndroidDevs
    #Featured #AndroidDevSummit #Android
  • Věda a technologie

Komentáře • 31

  • @sawyermade5469
    @sawyermade5469 Před 9 měsíci +6

    This is perfect, explains everything concisely while simultaneously being terse. Cheers.

    • @walrider7374
      @walrider7374 Před 4 měsíci

      I mean, it explains the theory, but how do you achieve multi module layer in real world??

    • @sawyermade5469
      @sawyermade5469 Před 4 měsíci +1

      @@walrider7374 I mean, you'd have to design a feature level architecture where each feature is a module, right?

    • @walrider7374
      @walrider7374 Před 4 měsíci

      @@sawyermade5469 oh, so for example authentication module having clean architecture in it? source, repository and usecase package?
      and the same for all the other feature modules?

    • @sawyermade5469
      @sawyermade5469 Před 4 měsíci

      @@walrider7374 In my case, I have login as a module, then I have a data module which has all my API stuff (ktor), DataStore, models, and Firebase etc. Then I have a home screen module, job management module, etc where each module after login and data is only coupled with login and data, there's no coupling between the rest of the features. Im also working on a consistent UI that I will probably put in each individual module once I get there. Theres some redundant code but I can work on the features individually without breaking anything else.

    • @seguramlk
      @seguramlk Před 2 měsíci

      ​@@walrider7374Actually according to this approach, you'll have at least 3 modules. Let's say for example:
      user:ui, user:domain and user: datasource
      You'll also need to have 3 common modules:
      ui, domain and datasource
      Your feature modules will depend on their parents. So user:ui will depend on ui, user:domain will depend on domain and so on
      So from a top-down view, you'll have this setup:
      user:ui
      ⬇️
      user:domain
      ⬇️
      user:datasource
      You'll create packages like this:
      datasource⤵️
      datasource(module)
      user:datasource
      The root datasource package will be a simple folder
      Inside of it you'll have 2 GRADLE Modules
      :datasource (Base module, common to all other modules)
      :user:datasource (This is your specific feature module, in this case, the feature is called user, hence the name. It's important to apply meaningful names to your modules so you'll look at it and will already know what it does)
      Hope I could help you man
      If you have any other ideas, leave them here. I don't know everything, far from it actually, so it's always great to see different approaches 👍

  • @bitwisedevs469
    @bitwisedevs469 Před 21 dnem

    I think the best way to explain the last part or at least the safest strategy is to use the app/main module to stitch each feature module, the presentation layer of each feature module should ideally contains only ViewModels so it is up to the consumer which is the app module on how to present it in UI via View XML or Compose.

  • @marlonlom
    @marlonlom Před 10 měsíci +1

    How can i use firebase auth or firestore in separated modules instead of the app module ??

  • @chuyebrian8949
    @chuyebrian8949 Před rokem +5

    Nice explanation.

  • @SHURA_RC
    @SHURA_RC Před 5 měsíci +1

    Estoy entrando en este tema y quedo muy bien explicado.

  • @victormartinezlegaz1871
    @victormartinezlegaz1871 Před rokem +7

    In my experience, when scaling to a large number of developers is better to avoid sharing business logic and data between feature modules. This may involve some duplication, but it can help prevent coupling and simplify maintenance in the long term.

    • @seguramlk
      @seguramlk Před 2 měsíci +1

      @victormartinezlegaz1871
      Hey Victor. How would you achieve that? Could provide some examples on how to do that or any real world scenarios where you struggled with this approach. I'm curious to know more about it. Thanks for sharing 👍

  • @guilhermenunes3130
    @guilhermenunes3130 Před 6 měsíci +2

    great overview :)

  • @davetao
    @davetao Před rokem +2

    In a large codebase, additions to a feature data module cascades into changes to changes to other modules as well and in effect causes teams to block each other

  • @koenkraak5922
    @koenkraak5922 Před rokem +2

    I really don't see how the combined architecture solves the redundancy/code duplication problem. The domain:books still has no access to authors (Even though it can access the data:authors, it cannot obtain them with use cases/ re-used business logic) and suddenly the ui layer uses both domains? Does that mean that the GetBooksWithAuthorUseCase is implemented in the ui layer now? Really confusing

    • @GakisStylianos
      @GakisStylianos Před rokem +4

      GetBooksWithAuthorUseCase can be in a module which can see both the other two domain modules. No need for it to be implemented in the UI module of course.

  • @d_chem_
    @d_chem_ Před rokem +11

    Are you sure that the domain module depends on the data module?

    • @peterfischer2748
      @peterfischer2748 Před rokem +8

      This seems to be the official decision by Google in their MAD series.
      The domain module there only consists of use cases rather than domain models. Since this diverges from common definitions (like DDD and clean architecture) I'm sure Google discussed this internally. I'd love to hear their thoughts and pros and cons of the different approaches.
      Maybe they consider this approach more beginner friendly because it avoids IoC.

    • @gregoryphiri5724
      @gregoryphiri5724 Před rokem +2

      Was actually thinking the same like using DIP to have public interfaces for the data layer in the domain n have the data sources in the data modules implementing the interfaces in the domain.

    • @BigCarso
      @BigCarso Před rokem +3

      @@peterfischer2748 I don't think it necessarily avoids IOC, but I think it is just a more sensible description of the relationship between domain and data. Using an interface IMO doesn't mean you can say domain doesn't depend on data layer. It still calls functions that direct to the data layer

    • @seguramlk
      @seguramlk Před 2 měsíci +2

      I think it makes sense when you modularize by both Feature and modules because you'll have specific feature modules inside common modules such as datasource or domain. In this case, you can either have an interface to communicate with lower modules but in this approach you'll have to depend on specific feature modules for example:
      user:ui DEPENDS ON user:domain THAT DEPENDS ON user: datasource that only depends on its parent :datasource
      Your parent :domain module should not depend on :datasource though. Only its children should depend on :datasource children and on :datasource by association

  • @GoDigital685
    @GoDigital685 Před rokem +3

    🤩🤩🤩🤩

  • @kalidsherefuddin
    @kalidsherefuddin Před rokem +2

    Ok

  • @ErikBongers
    @ErikBongers Před 3 dny

    It's not clear to me what is meant by "loose coupling". I think this is often a vague or even faux argument that just looks good on powerpoint slides.
    A better, more practical approach in determining the efficacy of a chosen modularization is what I call "The checkbox test".
    Plan to add a new checkbox to a screen and see what modules and files are affected.
    You'll often find that the impact goes vertical through the layers from UI to database. Ideally, this dependency line goes straight down and doesn't affect horizontal neighbours. In the worst case, the module graph shows that the whole codebase will get recompiled. Time to split up things in vertical columns. That's proper decoupling. If however you find that you are duplicating code across different columns (features) you may opt to recouple a certain layer horizontally, like in a domain layer. However, as suggested in Andriod, by using small UseCases, you should keep this layer well fragmented to avoid unnecessary horizontal coupling.
    If your newly added checkbox changes a usecase that triggers a full recompilation, then it's probably time to refactor.
    A 2nd test is the "Cheap lasagne" test.
    If you have lots of layers where a class is just a proxy (boilerplate) that passes events or data from the previous layer to the next, then consider removing the boilerplate from that layer. Especially when it may have a runtime impact with member functions just forwarding to other members in the next layer. Even if the element in the layer is just an interface with zero runtime cost - if the interface only ever has one implementation, consider not having such an interface. The compiler will thank you and the code maintainer will thank you.
    Bigger companies may opt to keep these functionally empty elements for consistency, but personally I'm not a fan this.

  • @vipinsahu1306
    @vipinsahu1306 Před rokem +4

    Separate codebase by Feature module ending up with Clean Architecture

  • @mohammedabdelsabour1412
    @mohammedabdelsabour1412 Před rokem +7

    Data module depend on domain module not reverse I sure

    • @BigCarso
      @BigCarso Před rokem +2

      It depends what you mean by depends on. IMO IOC doesn't mean "the data layer depends on domain module"

    • @seguramlk
      @seguramlk Před 2 měsíci

      I don't think so. I don't see any problem with the domain module depending on the datasource module. The domain module needs to process data, business logic. So it needs to have Access to repositories and other files in order to inject them into Usecases so they will be able to process that data and provide it to the UI layer
      Maybe it's not the best approach, but it sure is better than having no organization in your projects whatsoever
      The worst case scenario is that if you need to change this arch setup, it will be easier than migrating from messy projects in regards to modularization

  • @coldwised
    @coldwised Před 3 měsíci +2

    bruh, none of your repositories follow this architecture

    • @seguramlk
      @seguramlk Před 2 měsíci +2

      Do as I say but not as I do. I like this approach though

  • @3CHONPRODUCTIONS
    @3CHONPRODUCTIONS Před rokem +5

    This was so poorly explained and I bet when the example comes out it will never compile just like all their other repos